- First of all install Django:
For any system:
python -m pip install Django
For Archlinux:
sudo pacman -S python-django
- Clone the repository:
git clone https://github.com/istenith/join.istenith.com.git
- Change the directory to join.istenith.com using:
cd join.istenith.com
- Create a virtual environment:
pip install virtualenv
virtualenv venv
- Activate the virtual environment
source venv/bin/activate
- Now install all the packages which are being used in this project:
pip install -r requirements.txt
- Migrate all the database
python manage.py migrate
- Load the static files
python manage.py collectstatic
- Now run the development server:
python manage.py runserver