https://github.com/jetsup/smart_parking
https://github.com/jetsup/smart_parking
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jetsup/smart_parking
- Owner: jetsup
- Created: 2024-04-01T20:55:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-14T22:33:02.000Z (4 months ago)
- Last Synced: 2025-01-27T10:43:47.080Z (4 months ago)
- Language: HTML
- Size: 13.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Smart Parking Server
This is the server side of the Smart Parking project.
## Installation
1. Clone the repository
2. Run `pip install -r requirements.txt` or `pip3 install -r requirements.txt` to install the required packages
3. Run `python manage.py runserver 0.0.0.0:8000` or `python3 manage.py runserver 0.0.0.0:8000` to start the server## Discovered Issues
Firewall need to allow inbound and outbound traffic on port 8000.
For linux users, this can be done by running the following command:
```bash
sudo ufw enable # to enable the firewall during startup
sudo ufw allow 8000 # to allow traffic on port 8000
```For windows users, you can follow the steps in this [article](https://www.tomshardware.com/news/how-to-open-firewall-ports-in-windows-10,36451.html).