Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 430 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 430 Bytes

Api del centro de informacion

App web repo

Docker config create db

docker run --name info-center-api
    -e POSTGRES_PASSWORD=DB_PASSWORD
    -e POSTGRES_USER=DB_USER
    -e POSTGRES_DB=infocenter
    -p 55004:5432
    -d postgres

Execute docker postgresql

docker exec -it info-center-api psql -U postgres

Run main

go run .