Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Create react app #10

Merged
merged 5 commits into from
Apr 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

# http://EditorConfig.org
# top-most EditorConfig file
root = true

# Windos-style newlines with a newline ending most files
[*.{java,properties,js,xml,bat}]
end_of_line = crlf
insert_final_newline = true

# UNIX-style newlines for schellscripts
[*.{sh}]
end_of_line = lf
insert_final_newline = true


# Matches multiple files with brace expansion notation
# Set default charset
[*]
charset = utf-8

# Tab indentation
[*.{java,properties,js,xml,yaml,yml}]
indent_style = tab
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
.DS_Store
data_kafka/
latetuna.iml
latetuna.ipr
latetuna.ipr
*.log
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ docker-compose up
```
* running the gui from the subproject instead from the docker container make the turn around time significant shorter. Run `npm run dev` to start the webpack dev-server

* remove all unused docker images from this [gist](https://gist.github.com/ngpestelos/4fc2e31e19f86b9cf10b)
```
docker rmi $(docker images | grep "^<none>" | awk '{print $3}')
```


## Architecture
Expand Down
15 changes: 15 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
node_modules

# testing
coverage

# production
build

# misc
.DS_Store
.env
npm-debug.log
Loading