Merge pull request #8 from bytegrip/dev

Dev
This commit was merged in pull request #8.
This commit is contained in:
Daniel
2025-06-20 15:03:54 +03:00
committed by GitHub
2 changed files with 17 additions and 16 deletions

View File

@@ -2,17 +2,17 @@
```env ```env
SQL_SERVER=sqlserver SQL_SERVER=sqlserver
SQL_DATABASE=ExampleDB SQL_DATABASE=YourDatabaseName
SQL_USER_ID=admin SQL_USER_ID=sa
SQL_PASSWORD=SuperSecure(!)Pass123 SQL_PASSWORD=YourStrong(!)Password123
AUTH0_SECRET=1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcd AUTH0_SECRET=0000000000000000000000000000000000000000000000000000000000000000
AUTH0_ISSUER_BASE_URL=auth.example.com AUTH0_ISSUER_BASE_URL=auth.example.com
AUTH0_CLIENT_ID=abcDEF123456xyz7890 AUTH0_CLIENT_ID=YourAuth0ClientId
AUTH0_CLIENT_SECRET=SecretClientKeyHereThatLooksRealButIsFake1234567890 AUTH0_CLIENT_SECRET=YourAuth0ClientSecret
AUTH0_AUDIENCE=https://example.com AUTH0_AUDIENCE=https://example.com
AUTH0_SCOPE=openid profile email AUTH0_SCOPE=openid profile email
AUTH0_DOMAIN=https://dev-12345678.us.auth0.com/ AUTH0_DOMAIN=https://your-auth0-domain.auth0.com/
AUTH0_AUTHORITY=https://auth.example.com/ AUTH0_AUTHORITY=https://auth.example.com/
APP_BASE_URL=https://example.com APP_BASE_URL=https://example.com
@@ -24,17 +24,18 @@ ASPNETCORE_SEQ_URL=http://seq:5341
ASPNETCORE_LOGGING_LEVEL_DEFAULT=Information ASPNETCORE_LOGGING_LEVEL_DEFAULT=Information
ASPNETCORE_LOGGING_LEVEL=Information ASPNETCORE_LOGGING_LEVEL=Information
ASPNETCORE_LOGGING_LEVEL_EFCORE=Information ASPNETCORE_LOGGING_LEVEL_EFCORE=Information
ASPNETCORE_LOGGING_LEVEL_APP=Information ASPNETCORE_LOGGING_LEVEL_IMPRINK=Information
UPLOAD_BASE_URL=https://example.com
UPLOAD_HASH_FILENAME=true
UPLOAD_DIRECTORY=/app/uploads
SEQ_BASE_URI=https://example.com/seq SEQ_BASE_URI=https://example.com/seq
ZIPLINE_SECRET=somefakesecretkey123
ZIPLINE_URL=https://example.com/res
ZIPLINE_ROUTE=/res
NODE_ENV=development NODE_ENV=development
COOKIE_DOMAIN=.example.com COOKIE_DOMAIN=.example.com
NEXT_PUBLIC_API_URL=https://example.com/api NEXT_PUBLIC_API_URL=https://example.com/api
NEXT_PUBLIC_AUTH0_DOMAIN=auth.example.com NEXT_PUBLIC_AUTH0_DOMAIN=auth.example.com
NEXT_PUBLIC_AUTH0_CLIENT_ID=abcDEF123456xyz7890 NEXT_PUBLIC_AUTH0_CLIENT_ID=YourAuth0ClientId
``` ```

View File

@@ -103,9 +103,9 @@ services:
ports: ports:
- "3000:3000" - "3000:3000"
environment: environment:
- BASE_URL=https://impr.ink - BASE_URL=${UPLOAD_BASE_URL}
- HASH_FILENAME=true - HASH_FILENAME=${UPLOAD_HASH_FILENAME}
- UPLOAD_DIR=/app/uploads - UPLOAD_DIR=${UPLOAD_DIRECTORY}
volumes: volumes:
- ./uploads:/app/uploads - ./uploads:/app/uploads
networks: networks: