To start backend server do the following
Disclaimer: appropriate tools should be installed (dotnet core, EF core, docker, docker compose, git)
- Clone repo
git clone https://github.com/RoundRonin/ASIM.git- Start docker containers (mainly local DB)
docker compose up- Apply migrations to your local DB
from the root of the project:
cd ./back/Scripts
./updateDB.sh- Run the server (via docker or on the system directly)
from the root of the project:
dotnet run
if using docker:
docker compose upmake sure the container is running.