apps/bot/.gitignore (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# Ignore a blackhole and the folder for development node_modules/ .vs/ .idea/ *.iml # Yarn files .yarn/install-state.gz .yarn/build-state.yml # Environment variables .DS_Store dist/ # Ignore the config file (contains sensitive information such as tokens) config.ts # Ignore heapsnapshot and log files *.heapsnapshot *.log # Ignore npm lockfiles file package-lock.json # Environment variables .env.local .env.development.local .env.test.local .env.production.local |