Skip to content

CellWatch-EGS/Auth

Repository files navigation

Auth

Com docker

docker build -t registry.deti/cellwatch/auth_app:v2 .
docker push registry.deti/cellwatch/auth_app:v2
docker compose up

Localmente

Iniciar virtual env

source venv2/bin/activate

Instalar requirements

pip install -r requirements.txt

Iniciar

python3 run.py

Se for a primeira vez

Iniciar postgres

sudo su - postgres
psql

Criar base de dados

CREATE DATABASE cellwatch;

Criar user

CREATE USER admin WITH PASSWORD 'admin';

Dar permições

GRANT ALL PRIVILEGES ON DATABASE cellwatch TO admin;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published