mirror of
https://github.com/evroon/bracket.git
synced 2026-06-12 10:44:33 -04:00
Fix README content (#83)
This commit is contained in:
14
README.md
14
README.md
@@ -5,9 +5,13 @@
|
||||
[](https://github.com/evroon/bracket/actions/workflows/backend.yml)
|
||||
[](https://github.com/evroon/bracket/actions/workflows/frontend.yml)
|
||||
|
||||
Ladder tournament system meant to be easy to use.
|
||||
Bracket written in async Python (with FastAPI) and Next.js as frontend using the [Mantine](https://mantine.dev/) library.
|
||||
<br/>
|
||||
|
||||
Ladder tournament system meant to be easy to use.
|
||||
Bracket is written in async Python (with FastAPI) and Next.js as frontend using the [Mantine](https://mantine.dev/) library.
|
||||
|
||||
|
||||
### Preview
|
||||

|
||||
|
||||
# Setup
|
||||
@@ -23,8 +27,8 @@ pg_ctlcluster 13 bracket start
|
||||
Subsequently, create a new `bracket_dev` database:
|
||||
```shell
|
||||
sudo -Hu postgres psql -p 5532
|
||||
CREATE USER bracket_ci WITH PASSWORD 'bracket_ci';
|
||||
CREATE DATABASE bracket_ci OWNER bracket_ci;
|
||||
CREATE USER bracket_dev WITH PASSWORD 'bracket_dev';
|
||||
CREATE DATABASE bracket_dev OWNER bracket_dev;
|
||||
```
|
||||
|
||||
You can do the same but replace the user and database name with:
|
||||
@@ -53,5 +57,7 @@ npm run dev
|
||||
### Backend
|
||||
```
|
||||
cd backend
|
||||
pipenv install -d
|
||||
pipenv shell
|
||||
./run.sh
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user