# setting up VueJS
sudo apt install nodejs
sudo apt install npm
npm i
# setting up Django
sudo apt-get install -y python3-venv
python3 -m venv todopyenv
source todopyenv/bin/activate
pip3 install -r requirements.txt
In this project settings.py is not yet included. Once the project is ready for production it will be uploaded.
npm run serve -- --port 8000
python3 manage.py runserver 0.0.0.0:8080
npm run build
npm run lint
If you like this project give a star
Jay Shamnani