Skip to content

Commit 9134b84

Browse files
initial commit
Signed-off-by: Arnav Gupta <[email protected]>
0 parents  commit 9134b84

29 files changed

+2889
-0
lines changed

.dockerignore

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Node template
3+
# Logs
4+
logs
5+
*.log
6+
npm-debug.log*
7+
yarn-debug.log*
8+
yarn-error.log*
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
16+
# Directory for instrumented libs generated by jscoverage/JSCover
17+
lib-cov
18+
19+
# Coverage directory used by tools like istanbul
20+
coverage
21+
22+
# nyc test coverage
23+
.nyc_output
24+
25+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
26+
.grunt
27+
28+
# Bower dependency directory (https://bower.io/)
29+
bower_components
30+
31+
# node-waf configuration
32+
.lock-wscript
33+
34+
# Compiled binary addons (https://nodejs.org/api/addons.html)
35+
build/Release
36+
37+
# Dependency directories
38+
node_modules/
39+
jspm_packages/
40+
41+
# Typescript v1 declaration files
42+
typings/
43+
44+
# Optional npm cache directory
45+
.npm
46+
47+
# Optional eslint cache
48+
.eslintcache
49+
50+
# Optional REPL history
51+
.node_repl_history
52+
53+
# Output of 'npm pack'
54+
*.tgz
55+
56+
# Yarn Integrity file
57+
.yarn-integrity
58+
59+
# dotenv environment variables file
60+
.env
61+
62+
### JetBrains template
63+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
64+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
65+
66+
# User-specific stuff:
67+
.idea/**/workspace.xml
68+
.idea/**/tasks.xml
69+
.idea/dictionaries
70+
71+
# Sensitive or high-churn files:
72+
.idea/**/dataSources/
73+
.idea/**/dataSources.ids
74+
.idea/**/dataSources.xml
75+
.idea/**/dataSources.local.xml
76+
.idea/**/sqlDataSources.xml
77+
.idea/**/dynamic.xml
78+
.idea/**/uiDesigner.xml
79+
80+
# Gradle:
81+
.idea/**/gradle.xml
82+
.idea/**/libraries
83+
84+
# CMake
85+
cmake-build-debug/
86+
87+
# Mongo Explorer plugin:
88+
.idea/**/mongoSettings.xml
89+
90+
## File-based project format:
91+
*.iws
92+
93+
## Plugin-specific files:
94+
95+
# IntelliJ
96+
out/
97+
98+
# mpeltonen/sbt-idea plugin
99+
.idea_modules/
100+
101+
# JIRA plugin
102+
atlassian-ide-plugin.xml
103+
104+
# Cursive Clojure plugin
105+
.idea/replstate.xml
106+
107+
# Crashlytics plugin (for Android Studio and IntelliJ)
108+
com_crashlytics_export_strings.xml
109+
crashlytics.properties
110+
crashlytics-build.properties
111+
fabric.properties
112+

.gitignore

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Node template
3+
# Logs
4+
logs
5+
*.log
6+
npm-debug.log*
7+
yarn-debug.log*
8+
yarn-error.log*
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
16+
# Directory for instrumented libs generated by jscoverage/JSCover
17+
lib-cov
18+
19+
# Coverage directory used by tools like istanbul
20+
coverage
21+
22+
# nyc test coverage
23+
.nyc_output
24+
25+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
26+
.grunt
27+
28+
# Bower dependency directory (https://bower.io/)
29+
bower_components
30+
31+
# node-waf configuration
32+
.lock-wscript
33+
34+
# Compiled binary addons (https://nodejs.org/api/addons.html)
35+
build/Release
36+
37+
# Dependency directories
38+
node_modules/
39+
jspm_packages/
40+
41+
# Typescript v1 declaration files
42+
typings/
43+
44+
# Optional npm cache directory
45+
.npm
46+
47+
# Optional eslint cache
48+
.eslintcache
49+
50+
# Optional REPL history
51+
.node_repl_history
52+
53+
# Output of 'npm pack'
54+
*.tgz
55+
56+
# Yarn Integrity file
57+
.yarn-integrity
58+
59+
# dotenv environment variables file
60+
.env
61+
62+
### JetBrains template
63+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
64+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
65+
66+
# User-specific stuff:
67+
.idea/**/workspace.xml
68+
.idea/**/tasks.xml
69+
.idea/dictionaries
70+
71+
# Sensitive or high-churn files:
72+
.idea/**/dataSources/
73+
.idea/**/dataSources.ids
74+
.idea/**/dataSources.xml
75+
.idea/**/dataSources.local.xml
76+
.idea/**/sqlDataSources.xml
77+
.idea/**/dynamic.xml
78+
.idea/**/uiDesigner.xml
79+
80+
# Gradle:
81+
.idea/**/gradle.xml
82+
.idea/**/libraries
83+
84+
# CMake
85+
cmake-build-debug/
86+
87+
# Mongo Explorer plugin:
88+
.idea/**/mongoSettings.xml
89+
90+
## File-based project format:
91+
*.iws
92+
93+
## Plugin-specific files:
94+
95+
# IntelliJ
96+
out/
97+
98+
# mpeltonen/sbt-idea plugin
99+
.idea_modules/
100+
101+
# JIRA plugin
102+
atlassian-ide-plugin.xml
103+
104+
# Cursive Clojure plugin
105+
.idea/replstate.xml
106+
107+
# Crashlytics plugin (for Android Studio and IntelliJ)
108+
com_crashlytics_export_strings.xml
109+
crashlytics.properties
110+
crashlytics-build.properties
111+
fabric.properties
112+

0 commit comments

Comments
 (0)