42 lines
477 B
Plaintext
42 lines
477 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
|
|
|
|
|
|
|