Skip to content

Commit 768f772

Browse files
committed
Adding git ignore and updated README
1 parent 3b9c440 commit 768f772

File tree

4 files changed

+384
-201
lines changed

4 files changed

+384
-201
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
10+
# We recommend you to keep these unchanged
11+
end_of_line = lf
12+
charset = utf-8
13+
trim_trailing_whitespace = true
14+
insert_final_newline = true
15+
16+
[*.md]
17+
trim_trailing_whitespace = false

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Specifies files to intentionally ignore when using Git
2+
# http://git-scm.com/docs/gitignore
3+
4+
.idea
5+
.DS_Store
6+
*.swp
7+
Thumbs.db
8+
app/.tmp/
9+
app/node_modules/
10+
app/platforms/
11+
app/plugins/
12+
app/src/assets/vendor/bower_components/
13+
app/src/config/config-overrides-generated.ts
14+
app/www/
15+
api/dist/
16+
api/lambda/config-generated.js
17+
api/lambda/node_modules/
18+
api/later/
19+
api/node_modules/
20+
api/npm-debug.*
21+
api/swagger/generated
22+
api/swagger/Spacefinder-exported.yml
23+
app/src/config/config.ts
24+
25+
# These files are auto-generated by the deployment scripts
26+
api/lambda/environment.js
27+
app/src/config/config-overrides-generated.ts

0 commit comments

Comments
 (0)