50 lines
674 B
Plaintext
50 lines
674 B
Plaintext
// .gitignore
|
|
# next.js build output
|
|
.next
|
|
|
|
# dotenv environment variables file - set in pipeline as environment variables
|
|
.env
|
|
.env.build
|
|
|
|
# Dependency directories
|
|
node_modules/
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.yarn
|
|
|
|
#lock files
|
|
# yarn.lock
|
|
# package-lock.json
|
|
|
|
tmp
|
|
|
|
*env*.sample
|
|
docker
|
|
dockerfile*
|
|
.dockerignore
|
|
Makefile
|
|
docker*.yml
|
|
|
|
# Polling
|
|
|
|
pages/api/poll-queue.js
|
|
pages/polling.js
|
|
|
|
# dev apis to no include
|
|
|
|
pages/api/endpoint/getaccounts_api.js
|
|
|
|
# remove swagger api docs
|
|
|
|
next-swagger-doc.json
|
|
pages/api-doc.js
|
|
public/swagger.json
|
|
certificates/cert-key.pem
|
|
certificates/cert.pem
|
|
gitclean.sh
|
|
pages/admin/logcheck.js
|
|
pages/admin/logchecker.js
|