This is Django To-Do List App installation process.
First of clone this repository and make sure migration folder has only "init" named file, all pycache folder needs to be deleted if it is there, db.sqlite3 should be deleted from root.
git clone https://github.com/AARdacca/To-Do.gitThen
cd To-DoSecondly install and upgrade pip.
python -m pip install --upgrade pipMake sure to install virtualenv
pip install virtualenvThen create virtual environment
python -m venv envThen activate the env
.\env\Scripts\activateAt the 6th step, install the requirements
pip install -r requirements.txtNow ready the migrations
python manage.py makemigrationsNow migrate
python manage.py migrateNow Runserver
python manage.py runserverNow click the link http://127.0.0.1:8000/
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.