Go to file
Tao Bojlén b55485d7b8 Update .gitignore 2019-02-27 09:25:59 +00:00
backend Allow CORS from all fediverse.space subdomains 2019-02-27 09:09:23 +00:00
config enable CORS 2019-02-22 15:47:33 +00:00
frontend Update links to GitLab 2019-02-26 16:23:18 +00:00
gephi dockerize gephi 2019-02-21 12:32:50 +00:00
.gitignore Update .gitignore 2019-02-27 09:25:59 +00:00
LICENSE use AGPL (#32) 2019-02-20 13:45:09 +00:00
README.md Update README.md 2019-02-26 16:02:39 +00:00
docker-compose.production.yml migrate to caddy server 2019-02-22 15:40:44 +00:00
docker-compose.yml migrate to caddy server 2019-02-22 15:40:44 +00:00
example.env migrate to caddy server 2019-02-22 15:40:44 +00:00
screenshot.png add screenshot 2019-02-22 15:56:47 +00:00

README.md

fediverse.space 🌐

The map of the fediverse that you always wanted.

A screenshot of fediverse.space

Requirements

  • For everything:
    • Docker
    • Docker-compose
  • For the scraper + API:
    • Python 3
  • For laying out the graph:
    • Java
  • For the frontend:
    • Yarn

Running it

Backend

  • cp example.env .env and modify environment variables as required
  • docker-compose build
  • docker-compose up -d django
    • if you don't specify django, it'll also start gephi which should only be run as a regular one-off job
    • to run in production, run caddy rather than django

Frontend

  • cd frontend && yarn install
  • yarn start

Commands

Backend

After running the backend in Docker:

  • docker-compose exec web python manage.py scrape scrapes the fediverse
    • It only scrapes instances that have not been scraped in the last 24 hours.
    • By default, it'll only scrape 50 instances in one go. If you want to scrape everything, pass the --all flag.
  • docker-compose exec web python manage.py build_edges aggregates this information into edges with weights
  • docker-compose run gephi java -Xmx1g -jar build/libs/graphBuilder.jar lays out the graph

To run in production, use docker-compose -f docker-compose.yml -f docker-compose.production.yml instead of just docker-compose.

Frontend

  • yarn build to create an optimized build for deployment