You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. Make sure the required packages are built and installed:
13
+
2. Make sure the required packages are built and installed:
21
14
22
15
```sh
23
16
cd packages/notebook-types
@@ -26,10 +19,43 @@ You can find the auto-generated documentation for this Rust crate at [next.catco
26
19
pnpm install
27
20
```
28
21
29
-
4. Change to the migrator directory: `cd ../backend`
30
-
5. Copy the .env.development to both folders (`cp .env.development .env && cp .env.development ../migrator/.env`) and update the `DATABASE_URL` variable with
31
-
database username, password, and port. (If you used the above Docker command _as is_ it should already be correct.)
32
-
6. Run the initial database migration: `cargo run -p migrator apply`
22
+
3. Set up PostgreSQL (choose one of the options below)
23
+
24
+
### Option A: Using Docker (Recommended)
25
+
26
+
Run PostgreSQL in a Docker container:
27
+
28
+
```sh
29
+
docker run --name catcolab-postgres -e POSTGRES_PASSWORD=password \
0 commit comments