mirror of
https://github.com/evroon/bracket.git
synced 2026-06-11 10:15:19 -04:00
The port in the docker compose seems to be 8400, however the docs say it's 3000. Users may not know why they are seeing Connection refused issues
27 lines
620 B
Plaintext
27 lines
620 B
Plaintext
---
|
|
title: Quickstart
|
|
---
|
|
|
|
|
|
# Quickstart
|
|
|
|
To quickly run bracket to see how it works, clone it and run `docker compose up`:
|
|
|
|
```bash
|
|
git clone git@github.com:evroon/bracket.git
|
|
cd bracket
|
|
sudo docker compose up -d
|
|
```
|
|
|
|
This will start the backend and frontend of Bracket, as well as a postgres instance. You should now
|
|
be able to view bracket at `http://localhost:8400`. You can log in with the following credentials:
|
|
|
|
- Username: `test@example.org`
|
|
- Password: `aeGhoe1ahng2Aezai0Dei6Aih6dieHoo`.
|
|
|
|
To insert dummy rows into the database, run:
|
|
|
|
```bash
|
|
sudo docker exec bracket-backend uv run ./cli.py create-dev-db
|
|
```
|