-
Notifications
You must be signed in to change notification settings - Fork 73
bin setup
Yannick Schutz edited this page Jul 14, 2015
·
4 revisions
Several open source projects (and companies) adopt the bin/setup
standard to help developers onboard and ready to work faster. It's a single script that does everything needed to run the app and enable development on it.
For Pliny apps this involves:
- Installing dependencies with Bundler
- Generating the
.env
file from a sample - Creating databases for development & tests
Look at bin/setup
in your Pliny app for more info!
Further reading:
Basics
Diving in
- bin/setup
- Config
- CORS
- Endpoints
- Error Handling
- Logging
- Models
- Mediators
- Migrations
- Rake Tasks
- Request IDs
- RequestStore
- Schema
- Serialization
- Testing
- Updating
Guides