Show More
The requested changes are too big and content was truncated. Show full diff
@@ -1,154 +1,157 b'' | |||
|
1 | 1 | # Created by .ignore support plugin (hsz.mobi) |
|
2 | 2 | syntax: glob |
|
3 | 3 | |
|
4 | 4 | ### Example user template template |
|
5 | 5 | ### Example user template |
|
6 | 6 | |
|
7 | 7 | # IntelliJ project files |
|
8 | 8 | .idea |
|
9 | 9 | *.iml |
|
10 | 10 | out |
|
11 | 11 | gen### Python template |
|
12 | 12 | # Byte-compiled / optimized / DLL files |
|
13 | 13 | __pycache__/ |
|
14 | 14 | *.py[cod] |
|
15 | 15 | *$py.class |
|
16 | 16 | |
|
17 | 17 | # C extensions |
|
18 | 18 | *.so |
|
19 | 19 | |
|
20 | 20 | # Distribution / packaging |
|
21 | 21 | .Python |
|
22 | 22 | env/ |
|
23 | 23 | build/ |
|
24 | 24 | develop-eggs/ |
|
25 | 25 | dist/ |
|
26 | 26 | downloads/ |
|
27 | 27 | eggs/ |
|
28 | 28 | .eggs/ |
|
29 | 29 | $lib |
|
30 | 30 | lib64/ |
|
31 | 31 | parts/ |
|
32 | 32 | sdist/ |
|
33 | 33 | var/ |
|
34 | 34 | *.egg-info/ |
|
35 | 35 | .installed.cfg |
|
36 | 36 | *.egg |
|
37 | 37 | |
|
38 | 38 | # PyInstaller |
|
39 | 39 | # Usually these files are written by a python script from a template |
|
40 | 40 | # before PyInstaller builds the exe, so as to inject date/other infos into it. |
|
41 | 41 | *.manifest |
|
42 | 42 | *.spec |
|
43 | 43 | |
|
44 | 44 | # Installer logs |
|
45 | 45 | pip-log.txt |
|
46 | 46 | pip-delete-this-directory.txt |
|
47 | 47 | |
|
48 | 48 | # Unit test / coverage reports |
|
49 | 49 | htmlcov/ |
|
50 | 50 | .tox/ |
|
51 | 51 | .coverage |
|
52 | 52 | .coverage.* |
|
53 | 53 | .cache |
|
54 | 54 | nosetests.xml |
|
55 | 55 | coverage.xml |
|
56 | 56 | *,cover |
|
57 | 57 | .hypothesis/ |
|
58 | 58 | |
|
59 | 59 | # Translations |
|
60 | 60 | *.mo |
|
61 | 61 | *.pot |
|
62 | 62 | |
|
63 | # Mac stuff: | |
|
64 | *.DS_Store | |
|
65 | ||
|
63 | 66 | # Django stuff: |
|
64 | 67 | *.log |
|
65 | 68 | local_settings.py |
|
66 | 69 | |
|
67 | 70 | # Flask instance folder |
|
68 | 71 | instance/ |
|
69 | 72 | |
|
70 | 73 | # Scrapy stuff: |
|
71 | 74 | .scrapy |
|
72 | 75 | |
|
73 | 76 | # Sphinx documentation |
|
74 | 77 | docs/_build/ |
|
75 | 78 | |
|
76 | 79 | # PyBuilder |
|
77 | 80 | target/ |
|
78 | 81 | |
|
79 | 82 | # IPython Notebook |
|
80 | 83 | .ipynb_checkpoints |
|
81 | 84 | |
|
82 | 85 | # pyenv |
|
83 | 86 | .python-version |
|
84 | 87 | |
|
85 | 88 | # celery beat schedule file |
|
86 | 89 | celerybeat-schedule |
|
87 | 90 | |
|
88 | 91 | # dotenv |
|
89 | 92 | .env |
|
90 | 93 | |
|
91 | 94 | # virtualenv |
|
92 | 95 | venv/ |
|
93 | 96 | ENV/ |
|
94 | 97 | |
|
95 | 98 | # Spyder project settings |
|
96 | 99 | .spyderproject |
|
97 | 100 | |
|
98 | 101 | # Rope project settings |
|
99 | 102 | .ropeproject |
|
100 | 103 | |
|
101 | 104 | |
|
102 | 105 | syntax: regexp |
|
103 | 106 | ^\.idea$ |
|
104 | 107 | syntax: regexp |
|
105 | 108 | ^\.settings$ |
|
106 | 109 | syntax: regexp |
|
107 | 110 | ^data$ |
|
108 | 111 | syntax: regexp |
|
109 | 112 | ^webassets$ |
|
110 | 113 | syntax: regexp |
|
111 | 114 | ^dist$ |
|
112 | 115 | syntax: regexp |
|
113 | 116 | ^\.project$ |
|
114 | 117 | syntax: regexp |
|
115 | 118 | ^\.pydevproject$ |
|
116 | 119 | syntax: regexp |
|
117 | 120 | ^private$ |
|
118 | 121 | syntax: regexp |
|
119 | 122 | ^appenlight_frontend/build$ |
|
120 | 123 | syntax: regexp |
|
121 | 124 | ^appenlight_frontend/bower_components$ |
|
122 | 125 | syntax: regexp |
|
123 | 126 | ^appenlight_frontend/node_modules$ |
|
124 | 127 | ^src/node_modules$ |
|
125 | 128 | syntax: regexp |
|
126 | 129 | ^\.pydevproject$ |
|
127 | 130 | syntax: regexp |
|
128 | 131 | appenlight\.egg-info$ |
|
129 | 132 | syntax: regexp |
|
130 | 133 | \.pyc$ |
|
131 | 134 | syntax: regexp |
|
132 | 135 | \celerybeat.* |
|
133 | 136 | syntax: regexp |
|
134 | 137 | \.iml$ |
|
135 | 138 | syntax: regexp |
|
136 | 139 | ^frontend/build$ |
|
137 | 140 | syntax: regexp |
|
138 | 141 | ^frontend/bower_components$ |
|
139 | 142 | syntax: regexp |
|
140 | 143 | ^frontend/node_modules$ |
|
141 | 144 | ^frontend/src/node_modules$ |
|
142 | 145 | ^frontend/build$ |
|
143 | 146 | |
|
144 | 147 | syntax: regexp |
|
145 | 148 | \.db$ |
|
146 | 149 | |
|
147 | 150 | syntax: regexp |
|
148 | 151 | packer_cache |
|
149 | 152 | |
|
150 | 153 | syntax: regexp |
|
151 | 154 | packer/packer |
|
152 | 155 | |
|
153 | 156 | syntax: regexp |
|
154 | 157 | install_appenlight_production.yaml |
|
1 | NO CONTENT: modified file | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: modified file | |
The requested commit or file is too big and content was truncated. Show full diff |
|
1 | NO CONTENT: modified file | |
The requested commit or file is too big and content was truncated. Show full diff |
General Comments 0
You need to be logged in to leave comments.
Login now