Go to file
Godmode Galactus e3867c76c2
solving issue with banking stage errors
2023-10-27 12:21:02 +02:00
src solving issue with banking stage errors 2023-10-27 12:21:02 +02:00
.gitignore Intiail Commit 2023-09-28 16:26:09 +02:00
Cargo.lock updating cargo file 2023-10-23 20:15:50 +02:00
Cargo.toml updating cargo file 2023-10-23 20:15:50 +02:00
README.md fixing postgres save 2023-10-02 15:23:32 +02:00
migration.sql Merge branch 'grpc_v1.16.17' 2023-10-26 13:48:57 +02: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=username password=password sslmode=disable"