Get started

This page describes how to start the calendar on local machine for development purposes.

calendar-backend

Prerequisites

Before starting the backend, you will need to have the rust toolchain installed.

Follow the instructions from official site.

Start the backend

Clone the git repo

git clone https://github.com/calendar-team/calendar-backend.git

cd into the directory

cd calendar-backend

Start the app

cargo run

calendar-frontend

Prerequisites

Before starting the frontend, you will need to have Node.js and npm installed.

Follow the instruction from official site.

Start the frontend

Clone the git repo

git clone https://github.com/calendar-team/calendar-frontend.git

cd into the directory

cd calendar-frontend

Install locally all the dependencies from the project

npm install

Start the app

npm run dev