An open API service indexing awesome lists of open source software.

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

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
```