E-commerce backend built with java and spring
In order to run the project, you will need a MySQl docker container running.
# Download and run mysql
$ docker run -p 33061:3306 --name ecommerce -e MYSQL_ROOT_PASSWORD=root -d mysql:latest
If you change MySQL port or root password, you have to change it in the application.properties file.
Clone this repository and install all dependencies.
# Install all dependencies using Maven
$ mvn install
Start the project running the file EcommerceApplication.java. Or if you prefer, you can run it on docker:
$ docker run -p 8080:8080 daklotz/ecommerce:0.0.1-SNAPSHOT