#!/bin/bash

if [ "$1" == "--web" ]; then
    cd src/web
    npm install
    npm start
else
    dotnet watch --project src/slskd/slskd.csproj run
fi