Skip to content

Commit

Permalink
Merge pull request #13 from wavezync/fix/samaratungajs/upgrade
Browse files Browse the repository at this point in the history
fix: nestjs & dependencies upgrade
  • Loading branch information
kasvith authored Mar 5, 2024
2 parents 99655b7 + c6492bd commit edaf2c7
Show file tree
Hide file tree
Showing 7 changed files with 10,821 additions and 8,120 deletions.
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

0 comments on commit edaf2c7

Please sign in to comment.