1
0

feat: initial commit

This commit is contained in:
2025-11-13 11:08:20 +04:00
commit 059d79a256
46 changed files with 8797 additions and 0 deletions

24
.env.example Normal file
View File

@@ -0,0 +1,24 @@
# Do not touch this port - it is local, if you want to change port - change it in docker-compose.yml
PORT=3000
# Replace with `production`
NODE_ENV=development
DB_HOST=IP-OR-DOMAIN
DB_PORT=DATABASE_PORT
DB_NAME=DATABASE_NAME
DB_USER=USERNAMME
DB_PASS=PASSWORD
# You can keep this value by default for test env, but this not recommended.
JWT_SECRET=supersecretjwt
# JWT token live duration.
JWT_EXPIRES=7d
# If you running this project through docker - DO NOT MODITY THIS VARIABLE
UPLOAD_DIR=uploads
# Replace it by `http://[public ip or domain]:[public port, not local (PORT env variable)]`
PUBLIC_BASE_URL=http://localhost:3000