Simple eco system for MaxSOP. To-Do, Daily expense, Note etc is some basic features.
Install & create virtual environment
pip install virtualenv
pip -m venv <env-name>
Activate virtual environment (Windows)
cd <env-name>\Scripts\
activate
Install Django
pip install django
Install MySQL Client
pip install mysqlclient
Serve the server.
python manage.py runserver
or,
python manage.py runserver <ip-address>:<port-number>
Do not forgot to update "ALLOWED_HOSTS" from project settings.
Make migrations & migrate to database
python manage.py makemigrations
python manage.py migrate
Create superadmin
python manage.py createsuperuser
Generate dependance list
pip freeze > requirements.txt
Install dependance recursively
pip install -r .\requirements.txt