mirror of
https://github.com/go-shiori/shiori.git
synced 2025-01-15 12:27:43 +08:00
Merge pull request #177 from bvp/master
Added Heroku deploy. Fixed go-shiori/shiori#45
This commit is contained in:
commit
a7b41aef12
3 changed files with 25 additions and 0 deletions
1
Procfile
Normal file
1
Procfile
Normal file
|
@ -0,0 +1 @@
|
||||||
|
web: bin/shiori serve -p $PORT
|
13
README.md
13
README.md
|
@ -23,6 +23,19 @@ Shiori is a simple bookmarks manager written in Go language. Intended as a simpl
|
||||||
|
|
||||||
![Comparison of reader mode and archive mode](https://raw.githubusercontent.com/go-shiori/shiori/master/docs/readme/comparison.png)
|
![Comparison of reader mode and archive mode](https://raw.githubusercontent.com/go-shiori/shiori/master/docs/readme/comparison.png)
|
||||||
|
|
||||||
|
## Deploying to Heroku
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ heroku create
|
||||||
|
$ git push heroku master
|
||||||
|
$ heroku open
|
||||||
|
```
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
[![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy)
|
||||||
|
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
All documentation is available in [wiki](https://github.com/RadhiFadlillah/shiori/wiki). If you think there are incomplete or incorrect information, feels free to edit it.
|
All documentation is available in [wiki](https://github.com/RadhiFadlillah/shiori/wiki). If you think there are incomplete or incorrect information, feels free to edit it.
|
||||||
|
|
11
app.json
Normal file
11
app.json
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"name": "Shiori",
|
||||||
|
"description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket",
|
||||||
|
"keywords": [
|
||||||
|
"bookmark",
|
||||||
|
"go",
|
||||||
|
"pocket"
|
||||||
|
],
|
||||||
|
"website": "http://github.com/go-shiori/shiori",
|
||||||
|
"repository": "http://github.com/go-shiori/shiori"
|
||||||
|
}
|
Loading…
Reference in a new issue