Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.23 KB

File metadata and controls

39 lines (25 loc) · 1.23 KB

CONTROL OF CONTAINERS RARRAS SUPER TIENDAS S.A DE C.V

Web system for the control and administration of containers of the company Rarras Super Tiendas S.A DE C.V

made-with-pythonOpen Source LoveGPL Licence Interfaz del software

Installation

Download the project from Github to a local folder

https://github.com/erickcasita/rarras-admin.git

Create a virtual development environment

python -m venv *name*

Install dependencies

pip install -r requirements.txt

Create file .env with database configurations

POSTGRESQL_HOST = POSTGRESQL_HOST
POSTGRESQL_BD = POSTGRESQL_BD
POSTGRESQL_USER = POSTGRESQL_USER
POSTGRESQL_PASSWORD = POSTGRESQL_PASSWORD 
POSTGRESQL_PORT = POSTGRESQL_PORT

Create the migrations

python manage.py makemigrations

Apply migrations

python manage.py migrate

Run server

python manage.pu runserver