Compare commits

...

2 commits

Author SHA1 Message Date
1cb1ec9640
Add basic documentation 2024-05-19 22:07:15 +02:00
9b8fca76d0
Ignore prisma journal files 2024-05-19 22:07:01 +02:00
2 changed files with 8 additions and 0 deletions

1
.gitignore vendored
View file

@ -44,3 +44,4 @@ next-env.d.ts
# prisma # prisma
schnabu-web.db schnabu-web.db
*-journal

View file

@ -1,3 +1,10 @@
# Getting Started # Getting Started
## Identity Provider Setup
To enable generation of refresh tokens, enable OAuth Mapping 'offline_access' in your OAuth2 Provider. This can be found under "Advanced protocol settings". To enable generation of refresh tokens, enable OAuth Mapping 'offline_access' in your OAuth2 Provider. This can be found under "Advanced protocol settings".
## Running Project
1. `pnpm install`
2. `prisma migrate dev --schema prisma/schema-sqlite.prisma`
3. `pnpm dev`