This project serves as a basic setup to kick-start your application using the Elide library.
Clone the repository to your local machine for development and testing purposes.
Ensure you've Maven installed on your machine.
To run this project, the following steps must be followed:
- Navigate to the project directory in your terminal.
- Compile and package the application using Maven with the following command:
mvn package
- Once the application is packaged, run the standalone Java application using:
mvn exec:java
-
Run PostgreSQL with Docker using these commands:
docker pull postgres docker run --name postgres-docker -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -d -p 5432:5432 postgres
The username and password are set to 'postgres' for compatibility with the dbconfig.properties
file in this project.
If you wish to use different credentials, make sure to also update them in the properties file.
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.
Distributed under the Apache 2.0 License. See LICENSE
for more information.
Kerby Martino - kerbymart@gmail.com Project Link: https://github.com/kerbymart/pg-elide-standalone-starter