completed in Q4 2022
we have been conducting product research and testing with the above minipent instances and building out new components at https://pentacle.xyz
these will soon be bundled into minipent for our next phase of work to create minipents for content-curators
create new > minipent-projectName-ui
create new > minipent-projectName
link each to minipent github repo and set settings to /frontend or /backend
create new > postgres db
$ PGPASSWORD=00000000000000 pg_dump -h containers-us-west-81.railway.app -U postgres -p 9999 -d railway > minipent-04.sql
$ PGPASSWORD=00000000000000 psql -h containers-us-west-92.railway.app -U postgres -p 7777 -d railway
$ DROP SCHEMA public CASCADE;
$ CREATE SCHEMA public;
navigate to minipent-db-backups dir
$ PGPASSWORD=00000000000000 psql -h containers-us-west-92.railway.app -U postgres -p 7777 -d railway < minipent-04.sql
$ createdb mp-local-04
$ psql mp-local-04 < minipent-04.sql
update backend/config/database.js
database: env('PGDATABASE', 'mp-local-04'),
$ railway link
select repo
$ railway up
select be instance to deploy
$ railway link
select repo
$ railway up
select fe instance to deploy