-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
65 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,54 @@ | ||
# secret-page | ||
Super Duper Secret Stuff | ||
|
||
Based on https://github.com/nulltask/heroku-static-provider | ||
|
||
## Installation | ||
|
||
You need sign-in or sign-up to Heroku. | ||
|
||
$ git clone [email protected]:keckelt/secret-page.git | ||
$ cd secret-page | ||
$ heroku create | ||
$ git push -u heroku master | ||
$ heroku open | ||
|
||
## Development | ||
|
||
0. Install packages. | ||
|
||
```sh | ||
$ npm install | ||
``` | ||
|
||
0. Add or update files in `/public`. | ||
0. Run on the local machine. | ||
|
||
```bash | ||
$ npm start | ||
``` | ||
|
||
0. Check on browser. | ||
- http://localhost:5000 | ||
|
||
## Deployment | ||
|
||
$ git add . | ||
$ git commit -a -m 'some commit message' | ||
$ git push heroku master | ||
$ heroku open | ||
|
||
## Notes | ||
|
||
### Adding Basic Auth | ||
|
||
$ heroku config:set USER=username | ||
$ heroku config:set PASS=password | ||
|
||
### Screencast | ||
|
||
* https://vimeo.com/71315109 | ||
|
||
## License | ||
|
||
MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters