46 lines
824 B
Markdown
46 lines
824 B
Markdown
# Massive
|
|
|
|
<!--toc:start-->
|
|
|
|
- [Massive](#massive)
|
|
- [Setup](#setup) - [Install run-times](#install-run-times) - [Install SpacetimeDB](#install-spacetimedb)
|
|
<!--toc:end-->
|
|
|
|
## Setup
|
|
|
|
### Install run-times
|
|
|
|
```bash
|
|
mise use
|
|
```
|
|
|
|
### Install SpacetimeDB
|
|
|
|
```bash
|
|
curl -sSf https://install.spacetimedb.com | sh
|
|
```
|
|
|
|
Installs to
|
|
|
|
```
|
|
CLI configuration directory: /home/baobeld/.config/spacetime/
|
|
Spacetime binary: /home/baobeld/.local/bin/spacetime
|
|
directory for installed SpacetimeDB versions: /home/baobeld/.local/share/spacetime/bin
|
|
database directory: /home/baobeld/.local/share/spacetime/data
|
|
```
|
|
|
|
And enable WebAssembly:
|
|
|
|
```bash
|
|
dotnet workload install wasi-experimental
|
|
```
|
|
|
|
```bash
|
|
bun server:up
|
|
```
|
|
|
|
Add the spacetime docker server to your cli
|
|
|
|
```bash
|
|
spacetime server add --url http://localhost:3000 massive
|
|
```
|