Skip to content

Commit

Permalink
refactoring to microservices - WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
kucharzyk committed Apr 1, 2016
1 parent 049d1c8 commit 88cd639
Show file tree
Hide file tree
Showing 144 changed files with 529 additions and 198 deletions.
6 changes: 6 additions & 0 deletions .editorconfig
Expand Up @@ -10,3 +10,9 @@ end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.java]
indent_size = 4

[*.xml]
indent_size = 4

22 changes: 13 additions & 9 deletions .gitignore
@@ -1,16 +1,20 @@
### idea
.idea/
*.iml
### dist
src/main/resources/static/

### maven
target/
shardis-common/target/
shardis-ui/target/
shardis-api/target/

### node
etc/
node/
node_modules/
npm-debug.log
shardis-ui/etc/
shardis-ui/etc/node/
shardis-ui/etc/node_modules/
shardis-ui/npm-debug.log
### coverage
coverage/
shardis-ui/coverage/
### docs
doc/
shardis-ui/doc/
### dist
shardis-ui/src/main/resources/static/
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
## Changelog

### 1.3.0 (UNRELEASED)
* refactoring to microservices
* multi module pom project
* shared common library
* maven enforcer plugin
* custom schema for webpack config validator

### 1.2.2 (01.04.2016)
* Updated Angular to beta 13

Expand Down
13 changes: 10 additions & 3 deletions README.md
Expand Up @@ -2,15 +2,15 @@

Originally based on great [AngularClass](https://github.com/AngularClass) webpack starter

## FEATURES:
## FEATURES (OUTDATED):
* Build and testing process integrated with maven
* Spring Boot application in development mode use resources from webpack dev server
* scss support
* Foundation 6
* font-awesome
* All features from AngularClass starter

## PRODUCTION USAGE:
## PRODUCTION USAGE (OUTDATED):

To use production mode you need to use production maven profile as well as production spring profile (both activated as default)

Expand All @@ -24,7 +24,7 @@ Just package application in production mode:
mvn clean package
```

## DEVELOPMENT USAGE:
## DEVELOPMENT USAGE (OUTDATED):

To use development mode you need also webpack development server running in background.

Expand Down Expand Up @@ -52,6 +52,13 @@ npm run e2e

## Changelog

### 1.3.0 (UNRELEASED)
* refactoring to microservices
* multi module pom project
* shared common library
* maven enforcer plugin
* custom schema for webpack config validator

### 1.2.2 (01.04.2016)
* Updated Angular to beta 13

Expand Down

0 comments on commit 88cd639

Please sign in to comment.