Skip to content

Commit ae076ef

Browse files
committed
feat: frontend initial
1 parent 063920f commit ae076ef

File tree

397 files changed

+84599
-0
lines changed

Some content is hidden

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

397 files changed

+84599
-0
lines changed

.dockerignore

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# Dependencies
2+
node_modules
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
7+
# Next.js
8+
.next
9+
out
10+
11+
# Production
12+
build
13+
dist
14+
15+
# Environment variables
16+
.env
17+
.env.local
18+
.env.development.local
19+
.env.test.local
20+
.env.production.local
21+
22+
# Logs
23+
*.log
24+
25+
# Runtime data
26+
pids
27+
*.pid
28+
*.seed
29+
*.pid.lock
30+
31+
# Coverage directory used by tools like istanbul
32+
coverage
33+
34+
# nyc test coverage
35+
.nyc_output
36+
37+
# Dependency directories
38+
jspm_packages/
39+
40+
# Optional npm cache directory
41+
.npm
42+
43+
# Optional REPL history
44+
.node_repl_history
45+
46+
# Output of 'npm pack'
47+
*.tgz
48+
49+
# Yarn Integrity file
50+
.yarn-integrity
51+
52+
# parcel-bundler cache (https://parceljs.org/)
53+
.cache
54+
.parcel-cache
55+
56+
# next.js build output
57+
.next
58+
59+
# nuxt.js build output
60+
.nuxt
61+
62+
# vuepress build output
63+
.vuepress/dist
64+
65+
# Serverless directories
66+
.serverless
67+
68+
# FuseBox cache
69+
.fusebox/
70+
71+
# DynamoDB Local files
72+
.dynamodb/
73+
74+
# IDE
75+
.vscode
76+
.idea
77+
*.swp
78+
*.swo
79+
80+
# OS
81+
.DS_Store
82+
Thumbs.db
83+
84+
# Git
85+
.git
86+
.gitignore
87+
88+
# Docker
89+
Dockerfile*
90+
docker-compose*
91+
.dockerignore
92+
93+
# CI/CD
94+
.github
95+
96+
# Documentation
97+
README.md
98+
*.md
99+
100+
# Testing
101+
coverage
102+
.nyc_output
103+
jest.config.js
104+
105+
# Linting
106+
.eslintrc*
107+
.prettierrc*
108+
109+
# TypeScript
110+
*.tsbuildinfo

.prettierrc.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"endOfLine": "lf",
3+
"semi": false,
4+
"singleQuote": false,
5+
"tabWidth": 2,
6+
"trailingComma": "es5",
7+
"plugins": [
8+
"@ianvs/prettier-plugin-sort-imports",
9+
"prettier-plugin-tailwindcss"
10+
]
11+
}

0 commit comments

Comments
 (0)