This project is created based on a tutorial on Udemy by Created by Brad Traversy
This project is about developing a backend for a real state website. The static pages (front end including html, css and javascript files) has been provided and they need to be implemented so that the pages become dynamic.
For developing the backend Django framework is used. Also the website uses postgreSQL as database.
These instructions will get you a copy of the project up and running on your local machine for development.
There should be python 3.7 installed on the machine.
clone the project
git clone https://github.com/bornamir/BT-Real-State---Django.git
create and start a a virtual environment
projects/ThreeAttemptsLogin $ virtualenv venv
projects/ThreeAttemptsLogin $ source venv/bin/activate
Install the project dependencies:
pip install -r requirements.txt
then run
python manage.py migrate
to start the development server
python manage.py runserver
and open localhost:8000 on your browser to view the app.
- Django 2.1 - The web framework
- Python 3.7
- Borna Mir Arabshahi - github
This project is licensed under the MIT License - see the LICENSE.md file for details
This project is done based on a tutorial by Brad Traversy on Udemy.
Many thanks to him and his great tutorial.