Skip to content

Commit 72c2a11

Browse files
committed
cleanup from 3ASYAPP Template
1 parent 38f6313 commit 72c2a11

54 files changed

Lines changed: 167 additions & 168 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 167 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,167 @@
1-
/3ASYAPP - TEMPLATE
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
pnpm-debug.log*
7+
lerna-debug.log*
8+
9+
# Build outputs
10+
dist/
11+
dist-ssr/
12+
*.local
13+
build/
14+
out/
15+
16+
# Environment variables
17+
.env
18+
.env.local
19+
.env.development.local
20+
.env.test.local
21+
.env.production.local
22+
23+
# Allow example file
24+
!.env.example
25+
26+
# IDE and Editor files
27+
.vscode/
28+
.idea/
29+
*.swp
30+
*.swo
31+
*~
32+
33+
# OS generated files
34+
.DS_Store
35+
.DS_Store?
36+
._*
37+
.Spotlight-V100
38+
.Trashes
39+
ehthumbs.db
40+
Thumbs.db
41+
*:Zone.Identifier
42+
43+
# Logs
44+
logs/
45+
*.log
46+
47+
# Runtime data
48+
pids/
49+
*.pid
50+
*.seed
51+
*.pid.lock
52+
53+
# Coverage directory used by tools like istanbul
54+
coverage/
55+
*.lcov
56+
.nyc_output/
57+
58+
# Dependency directories
59+
jspm_packages/
60+
61+
# Optional npm cache directory
62+
.npm
63+
64+
# Optional eslint cache
65+
.eslintcache
66+
67+
# Optional REPL history
68+
.node_repl_history
69+
70+
# Output of 'npm pack'
71+
*.tgz
72+
73+
# Yarn Integrity file
74+
.yarn-integrity
75+
76+
# Parcel-bundler cache (https://parceljs.org/)
77+
.cache/
78+
.parcel-cache/
79+
80+
# Vite
81+
.vite/
82+
83+
# Next.js
84+
.next/
85+
next-env.d.ts
86+
87+
# Nuxt.js
88+
.nuxt/
89+
90+
# Gatsby files
91+
.cache/
92+
public/
93+
94+
# Storybook build outputs
95+
.out
96+
.storybook-out
97+
98+
# Rollup.js default build output
99+
dist/
100+
101+
# Serverless directories
102+
.serverless/
103+
104+
# FuseBox cache
105+
.fusebox/
106+
107+
# DynamoDB Local files
108+
.dynamodb/
109+
110+
# TernJS port file
111+
.tern-port
112+
113+
# Stores VSCode versions used for testing VSCode extensions
114+
.vscode-test
115+
116+
# Temporary folders
117+
tmp/
118+
temp/
119+
120+
# Editor directories and files
121+
.idea
122+
*.suo
123+
*.ntvs*
124+
*.njsproj
125+
*.sln
126+
*.sw?
127+
128+
# Deployment
129+
.vercel
130+
.netlify
131+
.aws-sam/
132+
133+
# Testing
134+
/coverage
135+
/.nyc_output
136+
137+
# Misc
138+
*.tsbuildinfo
139+
.turbo
140+
141+
# Local development files
142+
.local
143+
.backup
144+
*.backup
145+
README.md.backup
146+
147+
# Blockchain/Web3
148+
.openzeppelin/
149+
contracts/artifacts/
150+
contracts/cache/
151+
contracts/node_modules/
152+
153+
# Database
154+
*.db
155+
*.sqlite
156+
*.sqlite3
157+
158+
# Secrets and keys
159+
*.pem
160+
*.key
161+
*.crt
162+
secrets.json
163+
164+
# Personal data files
165+
demo-data.json
166+
demo-data-miky.json
167+
personal-data.json
File renamed without changes.

3ASYWEALTH/.gitignore

Lines changed: 0 additions & 167 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)