Go to file
Tao Bror Bojlén 5079875697
fix CORS for netlify branch deployments
2019-02-20 20:44:27 +00:00
backend fix CORS for netlify branch deployments 2019-02-20 20:44:27 +00:00
config merge 2019-02-20 20:04:15 +00:00
frontend use new API URL 2019-02-20 20:32:34 +00:00
.gitignore docker-ise backend 2019-02-20 16:18:12 +00:00
LICENSE use AGPL (#32) 2019-02-20 13:45:09 +00:00
README.md update README instructions 2019-02-20 17:29:02 +00:00
docker-compose.production.yml simplify prod setup slightly 2019-02-20 20:29:49 +00:00
docker-compose.yml don't serve static files 2019-02-20 17:14:28 +00:00
example.env merge 2019-02-20 20:04:15 +00:00

README.md

fediverse.space 🌐 Netlify Status

The map of the fediverse that you always wanted.

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

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 entire fediverse
  • docker-compose exec web python manage.py build_graph uses this information to lay out a 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