Compare commits

..

No commits in common. "8af45cdbd4662dcdf085286e54f6f4eaf7faae71" and "6900b9053c3e45a94823adb5138c12e0752fea5c" have entirely different histories.

1 changed files with 4 additions and 50 deletions

View File

@ -5,9 +5,9 @@
_GNU AGPLv3 code_
_Provided logo is CC BY-NC-SA 4.0_
Upstream source code: <https://git.pictuga.com/pictuga/morss>
Github mirror (for Issues & Pull requests): <https://github.com/pictuga/morss>
Homepage: <https://morss.it/>
Upstream source code: https://git.pictuga.com/pictuga/morss
Github mirror (for Issues & Pull requests): https://github.com/pictuga/morss
Homepage: https://morss.it/
This tool's goal is to get full-text RSS feeds out of striped RSS feeds,
commonly available on internet. Indeed most newspapers only make a small
@ -92,53 +92,7 @@ Then execute
docker-compose build --no-cache --pull
```
### Cloud providers
One-click deployment:
* Heroku: <https://heroku.com/deploy?template=https://github.com/pictuga/morss>
* Google Cloud: <https://deploy.cloud.run/?git_repo=https://github.com/pictuga/morss.git>
Providers supporting `cloud-init`:
``` yml
#cloud-config
packages:
- docker.io
- docker-compose
- git
- ca-certificates
groups:
- docker
system_info:
default_user:
groups: [docker]
write_files:
- path: /docker-compose.yml
permissions: "0644"
content: |
version: '3.7'
services:
app:
build: 'https://git.pictuga.com/pictuga/morss.git#master'
image: morss
ports:
- 80:8000
environment:
- DEBUG=1
- CACHE=diskcache
- CACHE_SIZE=1073741824
restart: always
runcmd:
- update-ca-certificates
- docker-compose -f /docker-compose.yml build --no-cache
- docker-compose -f /docker-compose.yml up -dV
```
One-click Heroku deployment: https://heroku.com/deploy?template=https://github.com/pictuga/morss
## Run