/out-of-gafam

Generate RSS feed for GAFAM (youtube, facebook, instagram and twitter)

Primary LanguageRustMIT LicenseMIT

Out Of GAFAM

GAFAM try to enclose you in their gilded prison, mainly by removing the web foundations: interoperability.

This project help you to evade from its prisons by allowing you to keep up to date about new contents without account, just with a good old RSS feed.

Compilation

make

Installation

Create a new PostgreSQL database:

createdb oog
psql -f src/sql/structure.sql oog

Here an example of systemd service:

[Unit]
Description=out of gafam service

[Service]
ExecStart=/home/git/public_repositories/out-of-gafam/current/target/release/oog
WorkingDirectory=/home/git/public_repositories/out-of-gafam/current
Restart=on-failure
Environment="LISTEN_IP=127.0.0.1"
Environment="LISTEN_PORT=8000"
Environment="DATABASE_URL=postgresql://localhost/oog"
Environment="RUST_LOG=warn"