Skip to content

Commit dbc528d

Browse files
authored
Merge pull request #2108 from bluewave-labs/develop-saas
Merge develop-saas into master-saas (11 September)
2 parents 3c26148 + 037f36d commit dbc528d

File tree

152 files changed

+9864
-2753
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+9864
-2753
lines changed

.env.prod

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ GOOGLE_CLIENT_ID=your-google-client-id.apps.googleusercontent.com
1818

1919
RESEND_API_KEY=your-resend-api-key
2020

21+
DO_SPACES_REGION=sfo3
22+
DO_SPACES_BUCKET=my-bucket
23+
DO_SPACES_ENDPOINT=https://sfo3.digitaloceanspaces.com/
24+
DO_SPACES_KEY=DOXXXXXXXXXXXXXXXXXXX
25+
DO_SPACES_SECRET=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
26+
LOG_DO_PREFIX=logs/
27+
LOG_COMPRESSION_ENABLED=true
28+
2129
# Database
2230
DB_PORT=5432
2331
LOCAL_DB_PORT=5433

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ express.log
1414
fastapi.log
1515
react.log
1616
.idea/
17+
.claude
18+
.github
19+
.kombai
20+
.vscode

Clients/src/application/config/routes.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import PolicyDashboard from "../../presentation/pages/PolicyDashboard/PoliciesDa
3030
import WatchTower from "../../presentation/pages/WatchTower";
3131
import ModelInventory from "../../presentation/pages/ModelInventory";
3232
import Framework from "../../presentation/pages/Framework";
33+
import WorkingDashboard from "../../presentation/pages/DashboardOverview/WorkingDashboard";
3334

3435
export const createRoutes = (
3536
triggerSidebar: boolean,
@@ -52,7 +53,7 @@ export const createRoutes = (
5253
<Route path="/test/project-view" element={<ProjectView />} />
5354
<Route path="/file-manager" element={<FileManager />} />
5455
<Route path="/reporting" element={<Reporting />} />
55-
<Route path="/" element={<VWHome />} />
56+
<Route index element={<WorkingDashboard />} />
5657
<Route path="/overview" element={<VWHome />} />
5758
<Route path="/framework" element={<Framework />} />
5859
<Route path="/project-view" element={<VWProjectView />} />

0 commit comments

Comments
 (0)