Lavendar is a fullstack calendar and tasks app made for Open Full Stack Project Course. Lavendar is made using MERN-Stack. It also has free public api that you can use on your own projects.
You can configure and run the project locally by following the steps below.
- Clone the repo
git clone https://github.com/TheJeme/Lavendar.git
- Setup frontend
cd frontend
- Install NPM packages
npm install
- Setup backend
cd ../backend
- Install NPM packages
npm install
- Create an .env file similar to the env.example file.
You can start frontend with command npm start
or do tests with npm run test
You can start backend with command npm start
or in development mode with npm run dev
or run tests with npm run test