Skip to content

Commit

Permalink
env example update
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschonti committed Aug 21, 2024
1 parent 4d30591 commit 49471f2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
15 changes: 12 additions & 3 deletions apps/backend/.env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/schbody?schema=public"
BACKEND_PORT=3300
# Database
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=schbody
POSTGRES_PORT=5432
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/schbody?schema=public
#Jwt
JWT_SECRET="this is a secret"
#AuthSch
AUTHSCH_CLIENT_ID="16873903969434023692"
AUTHSCH_CLIENT_SECRET="5KhIlDHGhxzLx3FK7L81FJ5CQSuyJTLVrW0hZnbzv4jbdOHU255HuOtBgGZS38V3pHGd4SE78aq4Njze"
JWT_SECRET="this is a secret"
#Frontend
FRONTEND_URL="http://localhost:3000"
BACKEND_PORT=3300
FRONTEND_AUTHORIZED_URL=http://localhost:3000/auth/callback
2 changes: 1 addition & 1 deletion apps/backend/src/app.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
return "let's get this bread!";
}
}

0 comments on commit 49471f2

Please sign in to comment.