Fix/mos 0003#8
Merged
Merged
Conversation
Create application-prod.yml with: - Database credentials from environment variables (DB_URL, DB_USERNAME, DB_PASSWORD) - HikariCP pool size 20 (vs 10 in dev) - show-sql disabled, minimal logging (WARN/INFO) - Flyway baseline-on-migrate disabled (schema must pre-exist) - Devtools disabled - Actuator show-details: never (prevent info leakage) - Stock data update-enabled: true with monthly cron - CORS allowed-origins from CORS_ALLOWED_ORIGINS env var - Twelve Data API key required (no empty default)
Replace hardcoded localhost origins in WebConfig.java with @value(app.cors.allowed-origins) injected from YAML. - dev: http://localhost:5173, http://127.0.0.1:5173 (Vite dev server) - prod: from CORS_ALLOWED_ORIGINS env var (set in application-prod.yml) This allows production deployment with real domain origins without code changes just set the environment variable.
- Change actuator show-details from 'always' to 'when-authorized' (safe default) - Base logging at INFO level (dev profile overrides to DEBUG) - Keep spring.profiles.active: dev as default production overrides via SPRING_PROFILES_ACTIVE=prod environment variable
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.