- Download and setup iseplife backend project
# Clone the repository (stable branch)
git clone -b master https://github.com/iseplife/api api
# Go to the project root
cd api
# Install dependencies
mvn install
- Create your database.
# Create your local dev one using docker
docker compose -f docker-compose.dev.yml up -d
- Enable the
unaccent
extension in your database
Execute this in your database using your favorite SQL client (for instance psql using psql -U iseplife_dev -h localhost -p 3333
).
CREATE EXTENSION unaccent;
- Create your
.env
file.
# Copy the example one to get started
cp example.env .env
Before contributing to the project be sure that you have read the Contributor guidelines.