-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
122 lines (106 loc) · 1.9 KB
/
.gitignore
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
############################
# global
############################
.DS_Store
.AppleDouble
.LSOverride
Icon
.Spotlight-V100
.Trashes
._*
.env
############################
# scripts
############################
data/data
############################
# grafana
############################
src/grafana/.db.env
############################
# strapi
############################
# packages
src/strapi/*.7z
src/strapi/*.csv
src/strapi/*.dat
src/strapi/*.dmg
src/strapi/*.gz
src/strapi/*.iso
src/strapi/*.jar
src/strapi/*.rar
src/strapi/*.tar
src/strapi/*.zip
src/strapi/*.com
src/strapi/*.class
src/strapi/*.dll
src/strapi/*.exe
src/strapi/*.o
src/strapi/*.seed
src/strapi/*.swp
src/strapi/*.so
src/strapi/*.swm
src/strapi/*.swo
src/strapi/*.pid
src/strapi/*.swn
src/strapi/*.out
# logs and databases
src/strapi/.tmp
src/strapi/*.log
src/strapi/*.sql
src/strapi/*.sqlite
src/strapi/*.sqlite3
# misc
src/strapi/*#
src/strapi/ssl
src/strapi/.idea
src/strapi/nbproject
src/strapi/public/uploads/*
src/strapi/!public/uploads/.gitkeep
# node.js
src/strapi/src/strapi/lib-cov
src/strapi/lcov.info
src/strapi/pids
src/strapi/logs
src/strapi/results
src/strapi/node_modules
src/strapi/.node_history
# tests
src/strapi/testApp
src/strapi/coverage
# strapi
src/strapi/.env
src/strapi/.db.env
src/strapi/license.txt
src/strapi/exports
src/strapi/*.cache
src/strapi/build
src/strapi/.strapi-updater.json
src/strapi/extensions/documentation
############################
# updater
############################
src/updater/app/.ipynb_checkpoints
src/updater/app/**/__pycache__
src/updater/app/cache
############################
# next
############################
# dependencies
src/next/node_modules
src/next/.pnp
src/next/.pnp.js
# testing
src/next/coverage
# next.js
src/next/.next/
src/next/out/
# production
src/next/build
# misc
src/next/.DS_Store
src/next/*.pem
# debug
src/next/npm-debug.log*
src/next/yarn-debug.log*
src/next/yarn-error.log*