Skip to content

Commit 35778d9

Browse files
feat: setup complete frontend and backend architecture
- Initialized FastAPI backend with Docker and Cloud Run deployment - Added basic endpoints for root, health check, and hello - Setup frontend with React, TypeScript, Vite, and MUI - Added Docker support for both backend and frontend - Configured Cloud Build pipelines for backend and frontend deployments
1 parent 0dd51f8 commit 35778d9

29 files changed

Lines changed: 3004 additions & 472 deletions

.claude/commands/prime.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Prime
2+
3+
> Execute the following sections to understand the codebase then summarize your understanding.
4+
5+
## Run
6+
7+
git ls-files
8+
9+
## Read
10+
11+
@README.md
12+
@pyproject.toml
13+
@docs/vision.md
14+
@docs/architecture.md
15+
16+
## Read and Execute
17+
18+
19+
20+

.claude/settings.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Write",
5+
"MultiEdit",
6+
"Edit",
7+
"Bash"
8+
],
9+
"deny": []
10+
}
11+
}

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,3 +205,30 @@ cython_debug/
205205
marimo/_static/
206206
marimo/_lsp/
207207
__marimo__/
208+
209+
# Claude
210+
/.claude/settings.local.json
211+
212+
# Node.js / Frontend
213+
node_modules/
214+
dist/
215+
.vite/
216+
*.tsbuildinfo
217+
.yarn/
218+
.pnp.*
219+
220+
# OS-specific files
221+
.DS_Store
222+
Thumbs.db
223+
*.tmp
224+
225+
# Project-specific
226+
temp/
227+
228+
# Additional environment files
229+
.env.local
230+
.env.production
231+
.env.development
232+
233+
# Docker
234+
docker-compose.override.yml

0 commit comments

Comments
 (0)