-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b19e8e
commit 5b6f34b
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |