- Add local SurrealDB install, update, and run scripts for Forge - Update setup docs and package the server SurrealDB helpers
7 lines
140 B
Bash
7 lines
140 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
surreal start --user root --pass root --bind 127.0.0.1:8000 rocksdb://forge.db
|