CouponShop is admin panel application for coupons that represent the discounted price for articles.
Application is linked with frontend connected with RESTful API. CouponShop frontend
Authentication is based on JWT generated by the server.
mvn clean install
After that you should put your dependencies into web/lib folder.
First you should setup your database credentials in pom.xml file.
<configuration>
<driver>com.mysql.cj.jdbc.Driver</driver>
<url>jdbc:mysql://192.168.10.10:3306?autoreconnect=true</url>
<user>homestead</user>
<password>secret</password>
<schemas>
<schema>couponshop</schema>
</schemas>
<encoding>ISO-8859-1</encoding>
<cleanOnValidationError>true</cleanOnValidationError>
</configuration>
and run:
mvn flyway:migrate