Please Use UBUNTU/MAC and not windows if you want your life to be any good.
Note: All commands are to be executed from base folder unless stated otherwise. This is just production code and not all good practices are used.
NOte: Fork this repo, and make a separate branch!!! don't commit on master please!!!! ask me if you have any doubts!
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
mysql -u root -p
write you password, then create database:
create database nursery_management;
Grant priveleges to user(idk if you made the user or not but figure it out userself you have dbms afterall)
GRANT ALL PRIVILEGES ON nursery_management.* TO 'noisymime'@'localhost';
touch secret.py
Now inside the file, add the username and password of your mysql user, we do this so we don't have to share the password on github.
e.g: the 2 lines could be
name = 'YOUR USER NAME'
password = 'YOUR PASSWORD'
python3 run.py