-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add instructions to setup PostgreSQL #251
Changes from 1 commit
8e6911a
c1c1557
a4aa97b
3f46d70
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
title: Guides - Database Configuration Overview | ||
--- | ||
|
||
# Overview | ||
|
||
Before starting your server, you need to configure database link in <code>.env*</code> files. | ||
|
||
Open this file for each environment and update <code>DATABASE_URL</code> for your database. | ||
|
||
## <a href="http://www.postgresql.org/" target="_blank">PostgreSQL</a> | ||
|
||
Setup database variable for the development environment: | ||
|
||
``` | ||
# .env.development | ||
DATABASE_URL="postgres://username:password@localhost/bookshelf_development" | ||
``` | ||
|
||
Setup database variable for the test environment: | ||
|
||
``` | ||
# .env.test | ||
DATABASE_URL="postgres://username:password@localhost/bookshelf_test" | ||
``` | ||
|
||
## Prepare tables in database | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This could be at the same level of title as There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Setup your database |
||
|
||
After your database variables setup is done you need to create a table in your database before you're be able to launch a development server. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you need to create the database and run the migrations before being able to launch a development server. |
||
In your terminal, enter: | ||
|
||
``` | ||
% bundle exec hanami db prepare | ||
``` | ||
|
||
To create a table in database for the test environment, enter: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To setup your test environment database, enter: |
||
|
||
``` | ||
% HANAMI_ENV=test bundle exec hanami db prepare | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
configure the database link