https://github.com/katt/boilerplate-heroku-static-nodejs-express-basic-auth
Boilerplate static web app Heroku + Basic auth setup
https://github.com/katt/boilerplate-heroku-static-nodejs-express-basic-auth
Last synced: 8 months ago
JSON representation
Boilerplate static web app Heroku + Basic auth setup
- Host: GitHub
- URL: https://github.com/katt/boilerplate-heroku-static-nodejs-express-basic-auth
- Owner: KATT
- Created: 2014-06-04T11:23:13.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-04T11:53:07.000Z (about 12 years ago)
- Last Synced: 2024-10-05T16:42:11.820Z (over 1 year ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Static Heroku node.js app with Basic Auth
Boilerplate code for static web app hosted with node.js on Heroku.
Default username/password is `USERNAME`/`PASSWORD`. (Change this in `server.js`.)
## Create your Heroku dyno:
```sh
heroku create
git push heroku master
heroku ps:scale web=1
heroku open
```
## Rename it to something appropiate
```sh
heroku apps:rename NEWNAME
heroku open
```