Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: nestjs & dependencies upgrade #13

Merged
merged 6 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SECRET='somesecret'
PORT=3000

# Database
DATABASE_URL=postgres://admin:admin@localhost:5432/syetalabs
DATABASE_URL=postgres://admin:admin@localhost:5432/wavezync

LOGGER_LEVEL=debug
LOGGER_FORMAT=pretty
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Syeta Labs
Copyright (c) 2021 Wavezync

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Api docs can be geneated thanks to `@nestjs/swagger` package. Since we are using
| Env Variable | Description | example |
| ------------- | ---------------------------- | ----------------------------------------------- |
| SECRET | Secret for JWT | somesecret |
| DATABASE_URL | PostgreSQL connection string | postgres://admin:admin@localhost:5432/syetalabs |
| DATABASE_URL | PostgreSQL connection string | postgres://admin:admin@localhost:5432/wavezync |
| LOGGER_LEVEL | Level of logger | info |
| LOGGER_FORMAT | Format for logging | pretty or json |

Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
context: .
target: development
environment:
- DATABASE_URL=postgres://admin:admin@db/syetalabs
- DATABASE_URL=postgres://admin:admin@db/wavezync
- PORT=3000
ports:
- 3000:3000
Expand All @@ -22,9 +22,9 @@ services:
db:
image: postgres:latest
environment:
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=admin
- POSTGRES_DB=syetalabs
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=wavezync
ports:
- '5432:5432'
volumes:
Expand Down
Loading
Loading