A web application to check whether the created flowchart is a Directed Acyclic Graph or not.
- cd frontend
- npm i
- npm start
You can use pycharm to create the virtual environment or follow the below steps.
- python -m venv .venv
- source .venv/bin/activate
- which python (to check if the environment is created inside your project)
- python -m pip install --upgrade pip (pip should be installed)
- echo "*" > .venv/.gitignore
- pip install "fastapi[standard]"
- pip install uvicorn
- uvicorn main:app --reload (to start the server)