A simple ticket-based project management web application.
Clone the repository:
git clone https://github.com/PaddiM8/Planera
Modify /docker-compose.yml
and replace both instances of
http://localhost:2000
with your domain. Additionally,
it is also possible configure email sending here.
Start docker compose:
docker-compose up -d
Planera should now be running and listening at localhost:2000.
Start the backend:
cd api
dotnet run
Start the frontend:
cd web
npm install
npm run dev