An application similar to Craigslist that gives users the ability to easily identify and understand the results of their searches displaying it in a more interactive and appeasing manner.
https://craigslistcloneapp.herokuapp.com/
Open a command prompt on your PC and run the command below:
git clone https://github.com/JolomonSon/Craigslist-Clone-App.git
Before installing the requirements, you need to have python installed on your PC. Python Setup and Installation. Open the cloned application (folder) and run the command below to install all requirements for the application.
pip install -r requirements.txt
Now you need to make a few changes in your settings.py file. Open your settings.py which should be located in your projects file and follow the instructions in Line 32, 51, 127 respectively and save the file.
Start your application using the following command in your command prompt:
python manage.py runserver
You can access your local server using this address on any web browser: http://127.0.0.1:8000/
You can check up django documentation page for any further information. Django Docs.