at15 / bform

Paper and data management web application for plastic forming
Apache License 2.0
0 stars 0 forks source link

User system #3

Open at15 opened 8 years ago

at15 commented 8 years ago

Init the real user system, including

Depends on

Ref

at15 commented 8 years ago

but microservice might be too complex for this project, no need to have service discovery and other things in this project. A possible solution could be

services
     account
        - account service interface
        - impl
             - standalone
             - rest
             - thrift rpc
at15 commented 8 years ago

As for database migration, spring boot recommend https://github.com/flyway/flyway, and http://www.liquibase.org/ is also mentioned. I think I can look into it and see if they are like migrations in php and rails, timestamp file name and up and down method.

but those two does not provide seed, which is quite useful ....

Guess I can create my own migration framework ....

at15 commented 8 years ago

need to wait after #7 and #8, previous comments are for spring boot, I am using php now.