The Wayback Machine - https://web.archive.org/web/20201024105042/https://github.com/aksakalli/todo-spring-angular
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

README.md

TODO Spring Angular

A demo of my recent tech stack, thanks to JHipster and generator-gulp-angular.

Technologies

Deploy

# Build the project
mvn package

# build the images
docker build -t todo-rest todo-rest/.
docker build -t todo-nginx todo-frontend/.

# run the containers
docker run -d --name todo-db -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=todo postgres:9.4.5
docker run -d --name todo-rest --link todo-db:todo-db todo-rest
docker run --name todo-nginx -p 8082:80 --link todo-rest:todo-rest -d todo-nginx

# or just use docker-compose
# for building and running
docker-compose up

License

Released under the MIT license.

You can’t perform that action at this time.