Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sauberr/carzone_project
Simple website with rent and sell/buy cars.
https://github.com/sauberr/carzone_project
Last synced: about 1 month ago
JSON representation
Simple website with rent and sell/buy cars.
- Host: GitHub
- URL: https://github.com/sauberr/carzone_project
- Owner: Sauberr
- Created: 2024-01-29T20:29:40.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-02-06T23:27:57.000Z (11 months ago)
- Last Synced: 2024-02-07T01:34:08.147Z (11 months ago)
- Language: JavaScript
- Size: 1.68 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Carzone
The project for study Django.#### Stack:
- [Python](https://www.python.org/downloads/)
- [PostgreSQL](https://www.postgresql.org/)## Local Developing
All actions should be executed from the source directory of the project and only after installing all requirements.
1. Firstly, create and activate a new virtual environment:
```bash
python3.11 -m venv ../venv
source ../venv/bin/activate
```
2. Install packages:
```bash
pip install --upgrade pip
pip install -r requirements.txt
```
## Run application
The uvicorn web server is used to run Django. The command to run looks like this:
```
py manage.py runserver
```
It must be run on the command line, always being in the root directory of the project.