This is a Django project was generated with Python version 3.9
Collins Nyakoe
- Description
- User Story
- Requirements
- Project setup instructions
- Technology Used
- Reference
- Live Link
- Contact Information
- Licence
Neighbour-watch is a web app that enables users to create neighbourhoods by location, join neighbourhoods of choice and leave the neighbourhood at will. A user is also able to view their own profile and post their businesses also. The user is required to enter their full details when joining a neighboorhood, which includes providing a police phone number of the nearby police station and a medical centre contact incase of emergencies.
The app hastemplate
folder where the markup langauge is written, a static
folder where
the stylesheet is stored and media files and the manage.py
file where the main function is run. Other severall python files too that are used to import data
All user inputs are stored and managed in a database
- Sign in to the application to start using.
- Upload a pictures to the application.
- Search for different users using their usernames.
- See your profile with all your pictures.
- Follow other users and see their pictures on my timeline.
- Leave a comment on posts.
-
A laptop or a desktop computer
-
An access to the reliable Internet connection
- Pull project from github Repository.
git clone https://github.com/Collins07/neighbour-watch.git
- Move to the folder and create a virtual environment
- Install requirements
pip install -r requirements.txt
-
Create a new postgress database
-
Make migrations on postgres using django
$ python manage.py makemigrations <database name>
$ python3 manage.py migrate
-
Run the application
$ python3 manage.py runserver
-
Open the application on your browser
http://127.0.0.1:8000/
-
python official website
https://packaging.python.org
-
Programming with Mosh
-
Code With Harry (youtube channel) Go Back to the top
Click View Site to visit the site
Any query? Contact me at [collinsabaya07@gmail.com]
MIT License
Copyright (c) [2022] [Collins07]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Go Back to the top