Skip to content

Commit 15a5ea1

Browse files
committed
Updated Read me with the intial commands -60% tested , added featured image + gitignore
1 parent b22e5da commit 15a5ea1

File tree

3 files changed

+479
-2
lines changed

3 files changed

+479
-2
lines changed

.gitignore

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Personal docs
2+
_docs/
3+
4+
# OS generated files
5+
.DS_Store
6+
.DS_Store?
7+
._*
8+
.Spotlight-V100
9+
.Trashes
10+
ehthumbs.db
11+
Thumbs.db
12+
13+
# Editor files
14+
.vscode/
15+
.idea/
16+
*.swp
17+
*.swo
18+
*~
19+
20+
# Logs
21+
*.log
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
25+
26+
# Runtime data
27+
pids
28+
*.pid
29+
*.seed
30+
*.pid.lock
31+
32+
# Coverage directory used by tools like istanbul
33+
coverage/
34+
35+
# nyc test coverage
36+
.nyc_output
37+
38+
# Dependency directories
39+
node_modules/
40+
41+
# Optional npm cache directory
42+
.npm
43+
44+
# Optional eslint cache
45+
.eslintcache
46+
47+
# Output of 'npm pack'
48+
*.tgz
49+
50+
# Yarn Integrity file
51+
.yarn-integrity
52+
53+
# dotenv environment variables file
54+
.env
55+
.env.local
56+
.env.development.local
57+
.env.test.local
58+
.env.production.local
59+
60+
# Temporary folders
61+
tmp/
62+
temp/
63+
64+
# Build outputs
65+
dist/
66+
build/
67+
68+
# IDE specific files
69+
.vscode/settings.json
70+
.idea/
71+
*.iml
72+
73+
# Backup files
74+
*.backup
75+
*.bak
76+
*.tmp

0 commit comments

Comments
 (0)