Skip to content

Commit 79bbd4a

Browse files
chore: delete DS Store
1 parent 4a359c7 commit 79bbd4a

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

.DS_Store

-6 KB
Binary file not shown.

.devcontainer/devcontainer.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "TechTix Monorepo",
3+
"image": "mcr.microsoft.com/devcontainers/universal:latest",
4+
"features": {
5+
"ghcr.io/devcontainers/features/python:1": {
6+
"version": "3.8",
7+
"installPipx": true
8+
},
9+
"ghcr.io/devcontainers/features/node:1": {
10+
"version": "20"
11+
}
12+
},
13+
"customizations": {
14+
"vscode": {
15+
"extensions": [
16+
"ms-python.python",
17+
"esbenp.prettier-vscode",
18+
"dbaeumer.vscode-eslint",
19+
"VisualStudioExptTeam.vscodeintellicode",
20+
"editorconfig.editorconfig",
21+
"yoavbls.pretty-json",
22+
"redhat.vscode-yaml",
23+
"streetsidesoftware.code-spell-checker",
24+
"bradlc.vscode-tailwindcss",
25+
"csstools.postcss"
26+
]
27+
}
28+
},
29+
"postCreateCommand": "bash -c "cd frontend && npm install && cd ../backend && pipenv install"",
30+
"portsAttributes": {
31+
"5173": {
32+
"label": "Frontend (Vite)",
33+
"onAutoForward": "notify"
34+
},
35+
"8000": {
36+
"label": "Backend (FastAPI)",
37+
"onAutoForward": "notify"
38+
}
39+
},
40+
"remoteUser": "root"
41+
}

0 commit comments

Comments
 (0)