https://github.com/kickinespresso/rails_base_box
https://github.com/kickinespresso/rails_base_box
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kickinespresso/rails_base_box
- Owner: kickinespresso
- License: mit
- Created: 2015-05-06T12:18:17.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-26T18:00:34.000Z (almost 10 years ago)
- Last Synced: 2025-02-17T05:15:12.641Z (3 months ago)
- Language: Shell
- Size: 121 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vagrant_template
`vagrant up`
rebuild: `vagrant destroy -f && vagrant up`
Export: `vagrant package --output mynew.box`
Login to postgres
psql -U postgrescreate user dev_user with password 'password';
alter role dev_user superuser createrole createdb replication;
create database development owner dev_user;