Create basic vue frontend
This commit is contained in:
parent
d399534a48
commit
dd8bf55b3c
36 changed files with 13802 additions and 3 deletions
23
.gitignore
vendored
23
.gitignore
vendored
|
@ -1,5 +1,24 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
/dist
|
||||
__pycache__/
|
||||
/db.sqlite3
|
||||
|
||||
/.idea/
|
||||
# local env files
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
/db.sqlite3
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
|
Reference in a new issue