A bug/issue tracking application.
App Link | bugout.lyle.app |
Tech Stack | |
Compiler | |
Top Language | |
Repo Size | |
Last Commit |
- Create a PostgreSQL database called 'bugout' using psql or database IDE:
CREATE DATABASE bugout
- Create tables and insert test data by executing the psql command
\i src\main\resources\import.sql
There are two Spring profiles available with corresponding database config data: dev and prod.
- Create a JAR file with the command
mvn clean package
in the application's root folder - In the /target directory, run the JAR file and include the desired dev or prod profile passed as an argument:
e.g. java -jar -Dspring.profiles.active=dev bugout-0.0.1-SNAPSHOT.jar
docker build -t bugout .
docker run -p 8080:8080 bugout:latest
- Navigate to http://localhost:8080
mvn spring-boot:run
or- To launch with profile -
mvn spring-boot:run -Dspring.profiles.active=dev
- Open browser at http://localhost:8080
The cool repo badges, logos and code stats included in this README are courtesy of Simple Icons and Shields.io.