Last updated:
0 purchases
rampdatabase 0.10.1
This package contains the ORM model for the RAMP database.
Set up of a PostgreSQL database
create db directory and initialise the PostgreSQL database:
mkdir postgres_dbs
initdb postgres_dbs
start the PostgreSQL engine:
pg_ctl -D postgres_dbs -l postgres_dbs/logfile start
create a user <db_user> and set a password <db_password>:
createuser --pwprompt <db_user>
create the database called <db_name> for that user:
createdb --owner=<db_user> <db_name>
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.