-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from gribanoveu/cuddly
merge to main
- Loading branch information
Showing
141 changed files
with
3,089 additions
and
2,473 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"configurations": [ | ||
|
||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: cuddle | ||
version: '3.7' | ||
|
||
services: | ||
postgres-db: | ||
image: postgres:15.4-alpine | ||
container_name: cuddle_db_postgres | ||
restart: unless-stopped | ||
environment: | ||
POSTGRES_USER: auth_postgres | ||
POSTGRES_PASSWORD: auth#7533245 | ||
POSTGRES_DB: auth_service_db | ||
volumes: | ||
- pgdata:/var/lib/postgresql/data | ||
ports: | ||
- "5432:5432" | ||
command: > | ||
postgres | ||
-c max_connections=100 | ||
-c shared_buffers=256MB | ||
-c effective_cache_size=512MB | ||
-c maintenance_work_mem=128MB | ||
-c checkpoint_completion_target=0.7 | ||
-c wal_buffers=8MB | ||
-c random_page_cost=2 | ||
-c effective_io_concurrency=1 | ||
-c work_mem=8192kB | ||
redis-db: | ||
image: redis:7.2.1-alpine | ||
container_name: cuddle_db_redis | ||
restart: unless-stopped | ||
ports: | ||
- "6379:6379" | ||
command: redis-server --save 20 1 --loglevel warning | ||
volumes: | ||
- cache:/data | ||
|
||
# dev only stuff | ||
mailcatcher: | ||
container_name: cuddle_dev_mailcatcher | ||
image: sj26/mailcatcher | ||
restart: unless-stopped | ||
ports: | ||
- "1080:1080" # smtp | ||
- "1025:1025" # http (ui) | ||
|
||
it-tools: | ||
container_name: cuddle_dev_it-tools | ||
image: 'corentinth/it-tools:latest' | ||
ports: | ||
- '8888:80' | ||
restart: unless-stopped | ||
|
||
volumes: | ||
pgdata: | ||
cache: | ||
driver: local |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
src/main/java/com/github/gribanoveu/auth/AuthServiceApplication.java
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
src/main/java/com/github/gribanoveu/auth/constants/Constants.java
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
src/main/java/com/github/gribanoveu/auth/constants/RegexpFormat.java
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/main/java/com/github/gribanoveu/auth/constants/ValidationMessages.java
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
src/main/java/com/github/gribanoveu/auth/controllers/dtos/request/ChangeEmailDto.java
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
src/main/java/com/github/gribanoveu/auth/controllers/dtos/request/ChangePasswordDto.java
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
src/main/java/com/github/gribanoveu/auth/controllers/dtos/request/LoginDto.java
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
src/main/java/com/github/gribanoveu/auth/controllers/dtos/request/PermissionDto.java
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
src/main/java/com/github/gribanoveu/auth/controllers/dtos/request/RegisterDto.java
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
src/main/java/com/github/gribanoveu/auth/controllers/dtos/request/UpdatePermissionDto.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.