Travisam
Learning Django
Contributors:
- Abishek Kafle
- Aashish Bhandari
- Neeraj Lamsal
Steps to contribute in this project as follows
- Fork the repository.
- Clone the repository. (git clone url)
- Create new branch. (git branch branchname)
- Move to new branch. (git checkout branchname)
- Change or update code.
- Push the code. (git push origin branchname)
To run this project on your PC:
- Make sure that you have python installed. If not, install from https://python.org
- Clone or download the project repo and create a virtual environment (python -m venv 'environment_name')
- Activate your environment(windows: " 'environment_name'/Scripts/activate")(mac/linux: "source 'environment_name'/bin/activate")
- Install django and other requirements(" pip install -r requirements.txt ")
- Migrate(python manage.py migrate), makemigrations and migrate again.
- Createsuperuser (python manage.py createsuperuser)
- Runserver (python manage.py runserver) [Open your browser and visit 127.0.0.1:8000]