Skip to content

Commit

Permalink
Add basic README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
VolkerSchlegel committed May 27, 2024
1 parent 7b19e8e commit 5b6f34b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Leaderboard server

This is a basic leaderboard server for [The Peacock Project](https://thepeacockproject.org/)

## Setup
```
yarn install # install dependencies
yarn prisma generate
# Modify to match your postgres setup
export DATABASE_URL = $env:DATABASE_URL="postgresql://USER:PASSWORD@HOST:PORT/DATABASE"
yarn prisma migrate dev # setup the database
yarn build
node ./build/main # start the server
```

0 comments on commit 5b6f34b

Please sign in to comment.