To create an virtual environment, run the following command in a Terminal
python3 -m venv meeting-scheduler
This will create an meeting-scheduler directory.
Activate the virtual environment by running
In Linux:
source bin/activate
In windows:
bin\activate
Now clone the git repository to the folder by running:
git clone https://github.com/gkdskp/meeting-scheduler.git
Install all the requirements for the project by running
cd meeting-scheduler
sudo pip3 install -r requirements.txt
To migrate run
python3 manage.py migrate
To run the server, execute
python3 manage.py runserver