mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-12 11:46:40 +00:00
edit gitignore
This commit is contained in:
parent
d06836d4f7
commit
d692d10e72
3 changed files with 23 additions and 26 deletions
23
.gitignore
vendored
23
.gitignore
vendored
|
|
@ -6,5 +6,26 @@ Migrations/
|
||||||
app.db*
|
app.db*
|
||||||
.DS_Store
|
.DS_Store
|
||||||
app.db
|
app.db
|
||||||
|
|
||||||
|
# client
|
||||||
|
client/src/pages/TestPage.tsx
|
||||||
|
client/react-app-env.d.ts
|
||||||
client/node_modules
|
client/node_modules
|
||||||
client/src/pages/TestPage.tsx
|
client/.pnp
|
||||||
|
client/.pnp.js
|
||||||
|
|
||||||
|
# testing
|
||||||
|
client/coverage
|
||||||
|
|
||||||
|
# production
|
||||||
|
client/build
|
||||||
|
|
||||||
|
# misc
|
||||||
|
client/.DS_Store
|
||||||
|
client/.env.local
|
||||||
|
client/.env.development.local
|
||||||
|
client/.env.test.local
|
||||||
|
client/.env.production.local
|
||||||
|
client/npm-debug.log*
|
||||||
|
client/yarn-debug.log*
|
||||||
|
client/yarn-error.log*
|
||||||
|
|
|
||||||
25
client/.gitignore
vendored
25
client/.gitignore
vendored
|
|
@ -1,25 +0,0 @@
|
||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
||||||
|
|
||||||
react-app-env.d.ts
|
|
||||||
|
|
||||||
# dependencies
|
|
||||||
/node_modules
|
|
||||||
/.pnp
|
|
||||||
.pnp.js
|
|
||||||
|
|
||||||
# testing
|
|
||||||
/coverage
|
|
||||||
|
|
||||||
# production
|
|
||||||
/build
|
|
||||||
|
|
||||||
# misc
|
|
||||||
.DS_Store
|
|
||||||
.env.local
|
|
||||||
.env.development.local
|
|
||||||
.env.test.local
|
|
||||||
.env.production.local
|
|
||||||
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
1
client/src/react-app-env.d.ts
vendored
Normal file
1
client/src/react-app-env.d.ts
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
/// <reference types="react-scripts" />
|
||||||
Loading…
Reference in a new issue