- Removed Playwright test dependencies from package.json and deleted playwright.config.ts. - Updated LoginForm component and its tests for improved readability and consistency. - Cleaned up App.vue and PublicLayout.vue by adjusting import formatting. - Fixed missing newlines in CSS and other files for better formatting. - Updated userStore to ensure proper object syntax. - Refactored LoginView to enhance code clarity and maintainability.
34 lines
956 B
YAML
34 lines
956 B
YAML
services:
|
|
web:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile.web
|
|
ports:
|
|
- "80:80"
|
|
depends_on:
|
|
- api
|
|
restart: unless-stopped
|
|
|
|
api:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile.api
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Production
|
|
- AppDbContextOptions__DatabaseFilePath=/data/fiscalos.db
|
|
- JwtOptions__Audience=${JWT_AUDIENCE}
|
|
- JwtOptions__Issuer=${JWT_ISSUER}
|
|
- JwtOptions__Secret=${JWT_SECRET}
|
|
- JwtOptions__ExpiryInMinutes=${JWT_EXPIRY_IN_MINUTES}
|
|
- FileKeyRingOptions__KeysDirectoryPath=/keys
|
|
- FileKeyRingOptions__PrimaryKeyId=${FILE_KEY_RING_PRIMARY_KEY_ID}
|
|
- PlaidClientOptions__ClientId=${PLAID_CLIENT_ID}
|
|
- PlaidClientOptions__Secret=${PLAID_SECRET}
|
|
- PlaidClientOptions__Webhook=${PLAID_WEBHOOK}
|
|
volumes:
|
|
- ./data:/data
|
|
- ./keys:/keys
|
|
restart: unless-stopped
|