The documentation of the project could be found in the docs folder.
Make sure that you have installed java-17; use java -version to verify.
Create application-local.yaml in resources folder.
Copy application.yaml to application-local.yaml
and replace missing configurations (env-variables) with local one, for example:
web:
storage:
local:
projectsFolder: ${PROJECTS_FOLDER}should be replaced to
web:
storage:
local:
projectsFolder: /tmp/projectsExecute ./gradlew -Dspring.profiles.active=local bootRun to run a backend server
Tip
To run backend using Intellij IDEA - add local to Active profiles in Run/Debug configuration.