Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(repo): update docker compose instructions #240

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SERVER_PORT=
PGSQL_URL=
SERVER_PORT=4001
PGSQL_URL=postgresql://postgres:password@localhost:5432/postgres
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,16 @@ This repo contains a set of packages under `@reverdotdev/` namespace such as:
The easiest way to start Revert is to run it via docker-compose:

```shell
# In the root directory run
docker-compose up
# Get the code
git clone --depth 1 https://github.com/revertinc/revert

# Copy the example env file
cp .env.example .env

# Update this .env file with your own secrets

# Then In the root directory run
docker-compose up -d
```

The UI is now available at http://localhost:3000 and the backend is available at http://localhost:4001.
Expand Down