Skip to content

Commit 978132a

Browse files
committed
World.CSS
0 parents  commit 978132a

File tree

12 files changed

+4220
-0
lines changed

12 files changed

+4220
-0
lines changed

.gitignore

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Cache files
2+
backend/cache/*.json
3+
backend/cache/*.cache
4+
5+
# Log files
6+
*.log
7+
logs/
8+
debug.log
9+
error.log
10+
11+
# Temporary files
12+
*.tmp
13+
*.temp
14+
*.swp
15+
*.swo
16+
*~
17+
18+
# IDE and editor files
19+
.vscode/
20+
.idea/
21+
*.sublime-project
22+
*.sublime-workspace
23+
24+
# OS generated files
25+
.DS_Store
26+
.DS_Store?
27+
._*
28+
.Spotlight-V100
29+
.Trashes
30+
ehthumbs.db
31+
Thumbs.db
32+
33+
# Node.js (if you add any in the future)
34+
node_modules/
35+
npm-debug.log*
36+
yarn-debug.log*
37+
yarn-error.log*
38+
39+
# PHP
40+
*.php~
41+
*.php.bak
42+
composer.lock
43+
44+
# Environment files
45+
.env
46+
.env.local
47+
.env.production
48+
.env.example
49+
50+
# Backup files
51+
*.bak
52+
*.backup
53+
54+
# Test files
55+
test-*.html
56+
debug-*.html
57+
example-*.html
58+
59+
# Build files
60+
dist/
61+
build/

0 commit comments

Comments
 (0)