<%= config %>¶ ↑
Welcome! You’ve generated an app using dry-web-web_pipe.
First steps¶ ↑
-
Run
bundle
-
Review
.env
&.env.test
(and make a copy to e.g..example.env
if you want example settings checked in). In particular, ensure that your PostgreSQL username and password are specified in theDATABASE_URL
variable as follows:postgres://username:password@your_host/...
. -
Run
bundle exec rake db:create
to create the development database. -
Run
RACK_ENV=test bundle exec rake db:create
to create the test database. -
Add your own steps to
bin/setup
-
Run the app with
bundle exec rerun -- rackup --port 4000 config.ru
-
Initialize git with
git init
and make your initial commit