Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jasonmorita/mean.io-heroku-step-by-step
Step-by-step to get Mean.io running on Heroku
https://github.com/jasonmorita/mean.io-heroku-step-by-step
Last synced: 2 days ago
JSON representation
Step-by-step to get Mean.io running on Heroku
- Host: GitHub
- URL: https://github.com/jasonmorita/mean.io-heroku-step-by-step
- Owner: jasonmorita
- Created: 2013-12-05T18:30:37.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-05T19:52:51.000Z (almost 11 years ago)
- Last Synced: 2023-05-11T17:46:18.594Z (over 1 year ago)
- Size: 105 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Step-by-step to get Mean.io running on Heroku
## Based on this YouTube tutorial by Mark Tucker: [http://www.youtube.com/watch?v=B1E0YXXITWg](http://www.youtube.com/watch?v=B1E0YXXITWg)Download mean.io, unzip, cd to directory. Be sure to get all hidden files.
> npm install
Set up Heroku account
Then https://devcenter.heroku.com/articles/quickstart
Install Heroku Toolbelt
> bower install
Edit .gitignore to remove public/lib
> git init
> git add .
> git commit -m "init commit"
> heroku login
> heroku create
> heroku keys:add
> git push heroku master
https://dashboard.heroku.com/apps
Click on app
Click on Run Production Check
Add free tier Papertrail addon
Add free tier MongoHQ
Go back to Apps, click on app, then MongoHQ
Click Admin collection, then Users
Add a user w usr/pwd
Click Overview and copy Mongo URI
Depending on mean.io at the time of install, the file to update is config/env/development.js. Change the db: property to new URI w correct usr/pwd.
> git add .
> git commit -m "add db"
> git push heroku master
> heroku open
Marvel.