Go to file
GroovieGermanikus c33490b64b
narrow resources cleared in clear_session
2024-01-31 12:35:28 +01:00
.github/workflows
.idea
src narrow resources cleared in clear_session 2024-01-31 12:35:28 +01:00
.dockerignore
.gitignore
Cargo.lock Alt processing 2024 01 26 (#50) 2024-01-29 10:54:11 +01:00
Cargo.toml Alt processing 2024 01 26 (#50) 2024-01-29 10:54:11 +01:00
Dockerfile Fix/fly cleanup2 (#36) 2024-01-05 11:16:27 +01:00
README.md
alts.txt
fly.toml
migration.sql partition accounts_map_transaction_latest table (#47) 2024-01-31 10:49:16 +01:00
run-service-and-cleanup.sh run cleanupjob on fly (#35) 2024-01-05 11:12:44 +01:00

README.md

TO INSTALL POSTGRES SCHEMA AND DATABASE

sudo -u postgres psql postgres

in postgres

create data create database mangolana; grant all privileges on database mangolana to galactus;

psql -d mangolana < migration.sql

export PG_CONFIG="host=localhost dbname=mangolana user=galactus password=test sslmode=disable"

give rights to user

GRANT ALL PRIVILEGES ON DATABASE mangolana TO galactus; GRANT ALL PRIVILEGES ON SCHEMA banking_stage_results TO galactus; GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA banking_stage_results TO galactus; ALTER DEFAULT PRIVILEGES IN SCHEMA banking_stage_results GRANT ALL PRIVILEGES ON TABLES TO galactus;