Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sauberr/devsearch

Website for devsearch
https://github.com/sauberr/devsearch

Last synced: about 2 months ago
JSON representation

Website for devsearch

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.