From 571bf95e40d7d236f86964af77e61ca658d42074 Mon Sep 17 00:00:00 2001 From: Erik Vroon Date: Mon, 16 Jan 2023 07:56:43 -0800 Subject: [PATCH] Fix README content (#83) --- README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f6f3a3d8..251876cd 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,13 @@ [![backend](https://github.com/evroon/bracket/actions/workflows/backend.yml/badge.svg)](https://github.com/evroon/bracket/actions/workflows/backend.yml) [![frontend](https://github.com/evroon/bracket/actions/workflows/frontend.yml/badge.svg)](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. +
+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 ![Preview](misc/img/preview.png) # 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 ```