diff options
| author | Teddy Wing | 2015-12-31 01:10:52 -0800 |
|---|---|---|
| committer | Teddy Wing | 2015-12-31 01:12:44 -0800 |
| commit | 1d619bf30b4f0dd3493e420286741c563aed679d (patch) | |
| tree | 25541117fe71c8ad3e5f65f6c2e086881e749854 | |
| parent | 20ad1319909a92dd4437bc93af34890ebf891ea6 (diff) | |
| download | Evernote-Rails-Example-1d619bf30b4f0dd3493e420286741c563aed679d.tar.bz2 | |
Add Makefile
Create a `run` task that runs the development server after sourcing the
required configuration variables from the `.env` file.
| -rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7d73ac4 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +run: + source .env && bundle exec rails server |
