Find peers --> find-peers.codam.nl
This website is meant to help students to find peers that are working on the same project
- Create a Oauth application on intra
- Copy the file
./env/.env-exampleto./env/.envand fill out the (secret) data
Also see ./src/env.ts for more configuration
cd find-peers
vim env/.env
# make changes
docker compose down
docker compose up -d
# To get logs
docker logs --tail 10000 -f find-peers| File path | Description | Managed by server |
|---|---|---|
./env/.env-example |
Example file for api tokens, rename to .env to activate |
no |
The database of this project is in a folder called 'database' at the root of the project.
This is in production
git clone https://github.com/codam-coding-college/find-peers.git
cd find-peers
docker compose up -d
# To get logs
docker logs --tail 10000 -f find-peers- Install Nodejs >= 18.x
- Install dependencies
npm install - Generate prisma client
npx prisma generate - Push schema directly
npx prisma db - Start development server
npm run dev