- 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
unaccentextension 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
.envfile.
# Copy the example one to get started
cp example.env .envBefore contributing to the project be sure that you have read the Contributor guidelines.