PaddiM8 / Planera

A simple ticket-based project management web application
MIT License
10 stars 1 forks source link

Planera

A simple ticket-based project management web application.

preview

Getting Started

Docker Compose

  1. Clone the repository:

    git clone https://github.com/PaddiM8/Planera
  2. Modify /docker-compose.yml and replace both instances of http://localhost:2000 with your domain. Additionally, it is also possible configure email sending here.

  3. Start docker compose:

    docker-compose up -d

Planera should now be running and listening at localhost:2000.

Development

Dependencies

Setup

Start the backend:

cd api
dotnet run

Start the frontend:

cd web
npm install
npm run dev