Openstatus www.openstatus.dev
at main 102 lines 1.2 kB view raw
1# Dependencies 2**/node_modules 3node_modules 4**/.pnpm-store 5.pnpm-store 6 7# Build outputs 8**/.next 9**/.turbo 10**/dist 11**/build 12**/.nuxt 13**/.output 14**/.cache 15 16# Environment files 17**/.env 18**/.env.* 19.env 20.env.* 21!.env.docker.example 22 23# Development files 24**/.vscode 25**/.idea 26**/.DS_Store 27.DS_Store 28**/*.log 29**/npm-debug.log 30**/yarn-debug.log 31**/yarn-error.log 32**/pnpm-debug.log 33 34# Testing 35**/coverage 36**/.nyc_output 37**/test-results 38**/__tests__ 39**/tests 40**/*.test.ts 41**/*.test.tsx 42**/*.test.js 43**/*.spec.ts 44**/*.spec.tsx 45**/*.spec.js 46 47# Git 48**/.git 49**/.gitignore 50**/.gitattributes 51.git 52.gitignore 53 54# Documentation 55**/README.md 56**/CHANGELOG.md 57**/LICENSE 58**/*.md 59!packages/**/README.md 60 61# CI/CD 62**/.github 63.github 64**/.gitlab 65**/.circleci 66**/.drone.yml 67**/.travis.yml 68 69# Docker 70**/.dockerignore 71**/Dockerfile 72**/docker-compose*.yml 73**/docker-compose*.yaml 74.dockerignore 75docker-compose*.yml 76docker-compose*.yaml 77 78# Database files 79openstatus.db 80**/*.db 81**/*.db-shm 82**/*.db-wal 83 84# Temporary files 85**/tmp 86**/temp 87**/.temp 88**/.tmp 89 90# IDE 91**/.vscode 92**/.idea 93**/.fleet 94 95# OS 96.DS_Store 97**/Thumbs.db 98 99# Other build artifacts 100**/.contentlayer 101**/public/build 102**/.svelte-kit