https://github.com/sauberr/devsearch
Website for devsearch
https://github.com/sauberr/devsearch
django postgresql python
Last synced: 4 months ago
JSON representation
Website for devsearch
- Host: GitHub
- URL: https://github.com/sauberr/devsearch
- Owner: Sauberr
- Created: 2023-12-14T12:56:09.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-14T15:58:44.000Z (over 1 year ago)
- Last Synced: 2024-12-03T16:35:40.164Z (7 months ago)
- Topics: django, postgresql, python
- Language: CSS
- Homepage:
- Size: 16.9 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Devsearch
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
```
py manage.py runserver
```
It must be run on the command line, always being in the root directory of the project.