File tree Expand file tree Collapse file tree 5 files changed +66
-5
lines changed
Expand file tree Collapse file tree 5 files changed +66
-5
lines changed Original file line number Diff line number Diff line change 1+ # Dependencies
2+ node_modules
3+ npm-debug.log *
4+ yarn-debug.log *
5+ yarn-error.log *
6+ frontend /apply /node_modules
7+
8+ # Python
9+ __pycache__
10+ * $py.class
11+ .Python
12+ backend /venv
13+ backend /env
14+ * .egg-info
15+ dist
16+
17+ # Next.js
18+ .next
19+ .next /
20+ out /
21+ frontend /apply /.next
22+
23+ # Testing
24+ coverage
25+ .coverage
26+ htmlcov
27+
28+ # IDE
29+ .vscode
30+ .idea
31+ * .swp
32+ * .swo
33+ * ~
34+
35+ # OS
36+ .DS_Store
37+ Thumbs.db
38+
39+ # Git
40+ .git
41+ .gitignore
42+ .gitattributes
43+
44+ # Environment
45+ .env
46+ .env.local
47+ .env. * .local
48+
49+ # Logs
50+ * .log
Original file line number Diff line number Diff line change 22__pycache__
33.vscode
44.env
5- venv
5+ venv
6+ .claude
7+ .idea
8+ .junie
9+ .cursor
10+ .DS_Store
Original file line number Diff line number Diff line change @@ -33,12 +33,18 @@ services:
3333 frontend :
3434 build :
3535 context : .
36- dockerfile : frontend.Dockerfile
36+ dockerfile : frontend.Dockerfile
3737 container_name : nextjs_frontend
3838 depends_on :
39- - backend
39+ - backend
4040 ports :
4141 - " 3000:3000"
42+ volumes :
43+ - ./frontend/apply:/app
44+ - /app/node_modules
45+ environment :
46+ - WATCHPACK_POLLING=true
47+ - CHOKIDAR_USEPOLLING=true
4248 command : ["npm", "run", "dev"]
4349
4450volumes :
Original file line number Diff line number Diff line change 11import type { NextConfig } from "next" ;
22
33const nextConfig : NextConfig = {
4- /* config options here */
4+ /* config options here */
55} ;
66
77export default nextConfig ;
Original file line number Diff line number Diff line change 33 "version" : " 0.1.0" ,
44 "private" : true ,
55 "scripts" : {
6- "dev" : " next dev --turbopack" ,
6+ "dev" : " next dev --turbopack --hostname 0.0.0.0 " ,
77 "build" : " next build" ,
88 "start" : " next start" ,
99 "lint" : " next lint" ,
You can’t perform that action at this time.
0 commit comments