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.git
Then
cd To-Do
Secondly install and upgrade pip.
python -m pip install --upgrade pip
Make sure to install virtualenv
pip install virtualenv
Then create virtual environment
python -m venv env
Then activate the env
.\env\Scripts\activate
At the 6th step, install the requirements
pip install -r requirements.txt
Now ready the migrations
python manage.py makemigrations
Now migrate
python manage.py migrate
Now Runserver
python manage.py runserver
Now 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.