Skip to content

Commit 0ee3196

Browse files
committed
added sleep instead of true containers in compose
1 parent d9aeef0 commit 0ee3196

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

docker-compose.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
version: "3.7"
22

33
services:
4-
# Use `docker compose up backend-dev` to start a database and work and the backend.
4+
# Use `docker compose up backend-dev --build --attach-dependencies` to start a database and work and the backend.
55
backend-dev:
6-
image: tianon/true
6+
image: sverrirab/sleep
77
depends_on: [db, adminer]
88

9-
# Use `docker compose up frontend-dev` to start all services needed to work on the frontend.
9+
# Use `docker compose up frontend-dev --build --attach-dependencies` to start all services needed to work on the frontend.
1010
frontend-dev:
11-
image: tianon/true
11+
image: sverrirab/sleep
1212
depends_on: [db, webdb, adminer, maildev, backend]
1313

1414
# This DB is for the FastAPI Backend.

scripts/backend-development/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Backend Development Setup
22

3-
In root directory, run `docker compose up backend-dev` to start a database. The default settings are already configured to connect to the database at `localhost:5432`.
3+
In root directory, run `docker compose up backend-dev --build --attach-dependencies` to start a database. The default settings are already configured to connect to the database at `localhost:5432`.
44

55
Make sure you have all requirements installed. You can do this by running `pip install -r requirements.txt` inside the `backend` folder and `pip install -e .` inside the `oasst-shared` folder.
66
Then, run the backend using the `run-local.sh` script. This will start the backend server at `http://localhost:8080`.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Frontend Development Setup
22

3-
In root directory run `docker compose up frontend-dev --build` to start a database and the backend server.
3+
In root directory run `docker compose up frontend-dev --build --attach-dependencies` to start a database and the backend server.
44

55
Then, point your frontend at `http://localhost:8080` to start developing. During development, any API key will be accepted.

website/README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,8 @@ installed:
4949

5050
If you're doing active development we suggest the following workflow:
5151

52-
1. In one tab, navigate to
53-
`${OPEN_ASSISTANT_ROOT}/scripts/frontend-development`.
54-
1. Run `docker compose up --build`. You can optionally include `-d` to detach and
52+
1. In one tab, navigate to the project root.
53+
1. Run `docker compose up frontend-dev --build --attach-dependencies`. You can optionally include `-d` to detach and
5554
later track the logs if desired.
5655
1. In another tab navigate to `${OPEN_ASSISTANT_ROOT/website`.
5756
1. Run `npm install`

0 commit comments

Comments
 (0)