A service to replicate and serve requests for site configurations based on site ID, public IP, and the on-site lead contact's OTP.
Revisión | dd1c072a3067206f2de0f169ac0c04a52a53e394 (tree) |
---|---|
Tiempo | 2021-10-09 04:23:03 |
Autor | Sean Seago <seagosean@gmai...> |
Commiter | Sean Seago |
Initial commit
@@ -0,0 +1,50 @@ | ||
1 | +# These are some examples of commonly ignored file patterns. | |
2 | +# You should customize this list as applicable to your project. | |
3 | +# Learn more about .gitignore: | |
4 | +# https://www.atlassian.com/git/tutorials/saving-changes/gitignore | |
5 | + | |
6 | +# Node artifact files | |
7 | +node_modules/ | |
8 | +dist/ | |
9 | + | |
10 | +# Compiled Java class files | |
11 | +*.class | |
12 | + | |
13 | +# Compiled Python bytecode | |
14 | +*.py[cod] | |
15 | + | |
16 | +# Log files | |
17 | +*.log | |
18 | + | |
19 | +# Package files | |
20 | +*.jar | |
21 | + | |
22 | +# Maven | |
23 | +target/ | |
24 | +dist/ | |
25 | + | |
26 | +# JetBrains IDE | |
27 | +.idea/ | |
28 | + | |
29 | +# Unit test reports | |
30 | +TEST*.xml | |
31 | + | |
32 | +# Generated by MacOS | |
33 | +.DS_Store | |
34 | + | |
35 | +# Generated by Windows | |
36 | +Thumbs.db | |
37 | + | |
38 | +# Applications | |
39 | +*.app | |
40 | +*.exe | |
41 | +*.war | |
42 | + | |
43 | +# Large media files | |
44 | +*.mp4 | |
45 | +*.tiff | |
46 | +*.avi | |
47 | +*.flv | |
48 | +*.mov | |
49 | +*.wmv | |
50 | + |