We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a48ffe commit a02cd68Copy full SHA for a02cd68
docs/services/surrealdb.md
@@ -0,0 +1,23 @@
1
+# SurrealDB
2
+
3
+SurrealDB is a multi-model database. Coolify provides one-click templates for:
4
5
+- SurrealDB (RocksDB)
6
+- SurrealDB (TiKV)
7
8
+## Deploy in Coolify
9
+1. In Coolify: New Resource → Service
10
+2. Select the SurrealDB template (RocksDB or TiKV)
11
+3. Deploy and wait until the service is Running/Healthy
12
13
+## Verify
14
+- SurrealDB should be reachable on port 8000 (if exposed)
15
+- Run a basic query via the SQL HTTP endpoint:
16
17
+```bash
18
+curl -sS -X POST \
19
+ -u "<USER>:<PASS>" \
20
+ -H "NS: <NAMESPACE>" \
21
+ -H "DB: <DATABASE>" \
22
+ --data "INFO FOR DB;" \
23
+ "http://<HOST>:<PORT>/sql"
0 commit comments