Skip to content

Commit 546d76b

Browse files
committed
added .deploymentignore
1 parent 673c7fa commit 546d76b

3 files changed

Lines changed: 51 additions & 1 deletion

File tree

.deploymentignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Exclude Frontend (React Native app - not needed on Azure App Service)
2+
# The Frontend is a mobile app that should be deployed separately via Expo/App Store
3+
Frontend/
4+
5+
# Exclude node_modules (will be installed on Azure via npm install)
6+
**/node_modules/
7+
8+
# Exclude development files
9+
**/.git/
10+
**/.gitignore
11+
**/.DS_Store
12+
**/.vscode/
13+
**/.idea/
14+
**/*.swp
15+
**/*.log
16+
17+
# Exclude environment files (should be configured in Azure App Settings)
18+
**/.env
19+
**/.env.local
20+
**/.env.*.local
21+
22+
# Exclude build artifacts and development directories
23+
**/build/
24+
**/dist/
25+
**/.expo/
26+
**/.next/
27+
**/.cache/
28+
29+
# Exclude test files
30+
**/__tests__/
31+
**/*.test.js
32+
**/*.test.ts
33+
**/*.test.jsx
34+
**/*.test.tsx
35+
**/*.spec.js
36+
**/*.spec.ts
37+
38+
# Exclude documentation (optional - reduces size)
39+
**/README.md
40+
**/docs/
41+
42+
# Exclude development scripts (optional - keep if needed)
43+
# **/scripts/
44+

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,5 @@ yarn-error.log*
2424
.vscode/
2525
.idea/
2626
*.swp
27+
temp_auto_push.bat
28+
temp_interactive_push.bat

Frontend/tailwind.config.js

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)