Skip to content

Commit 5ec6a5c

Browse files
committed
Deploying my frontend to Netlify now.
1 parent d26710f commit 5ec6a5c

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

springqpro-backend/src/main/java/com/springqprobackend/springqpro/config/SecurityConfig.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ public CorsConfigurationSource corsConfigurationSource() {
100100
CorsConfiguration config = new CorsConfiguration();
101101
// Allowed origins for frontend
102102
config.setAllowedOrigins(List.of(
103-
"http://localhost:5173" // local dev (TO-DO: append Netlify link later when frontend is deployed).
103+
"http://localhost:5173", // local dev (TO-DO: append Netlify link later when frontend is deployed).
104+
"https://springqueuepro-production.up.railway.app"
104105
));
105106
// Important for JWT/Auth
106107
config.setAllowCredentials(true);
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* /index.html 200

springqpro-frontend/src/pages/AboutPage.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export default function AboutPage() {
2222
task-processing engine built with modern cloud-ready fundamentals:
2323
JWT-based authentication, Redis-backed distributed locking, PostgreSQL
2424
persistence, retry policies, Prometheus metrics, and Spring Boot 3.
25+
{" "}<b>NOTE: THIS IS A QUICK PROJECT SUMMARY FOR AN MVP DASHBOARD (TO BE FLESHED OUT IN DETAIL SOON).</b>
2526
</p>
2627

2728
<p>
@@ -79,7 +80,7 @@ export default function AboutPage() {
7980
└──────┘ └────────┘
8081
8182
┌────┴─────┐
82-
│ Grafana │ (Monitoring dashboard)
83+
│ Grafana │ (SOON-TO-COME: Monitoring dashboard)
8384
└───────────┘
8485
`}
8586
</pre>

0 commit comments

Comments
 (0)