2019-02-20 17:20:37 +00:00
|
|
|
# fediverse.space 🌐 [](https://app.netlify.com/sites/sharp-curran-4b66d3/deploys)
|
2019-02-20 17:05:25 +00:00
|
|
|
The map of the fediverse that you always wanted.
|
2019-02-20 16:49:45 +00:00
|
|
|
|
|
|
|
## Requirements
|
|
|
|
- For everything:
|
|
|
|
- Docker
|
|
|
|
- Docker-compose
|
|
|
|
- For the scraper + API:
|
|
|
|
- Python 3
|
|
|
|
- For laying out the graph:
|
|
|
|
- Java
|
|
|
|
- For the frontend:
|
|
|
|
- Yarn
|
2018-08-27 00:31:53 +02:00
|
|
|
|
|
|
|
## Running it
|
2019-02-20 16:49:45 +00:00
|
|
|
### Backend
|
|
|
|
- `cp example.env .env` and modify environment variables as required
|
|
|
|
- `docker-compose build`
|
2019-02-21 12:32:50 +00:00
|
|
|
- `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
|
2019-02-20 16:49:45 +00:00
|
|
|
### Frontend
|
|
|
|
- `cd frontend && yarn install`
|
|
|
|
- `yarn start`
|
|
|
|
|
|
|
|
## Commands
|
|
|
|
### Backend
|
2019-02-20 17:29:02 +00:00
|
|
|
|
|
|
|
After running the backend in Docker:
|
|
|
|
|
|
|
|
- `docker-compose exec web python manage.py scrape` scrapes the entire fediverse
|
2019-02-21 12:32:50 +00:00
|
|
|
- `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
|
2019-02-20 16:49:45 +00:00
|
|
|
|
|
|
|
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
|
2018-09-01 15:32:04 +02:00
|
|
|
|