2018-08-27 11:15:17 +00:00
|
|
|
# fediverse.space
|
|
|
|
fediverse.space is a tool to explore instances in the fediverse.
|
2018-08-26 22:31:53 +00:00
|
|
|
|
|
|
|
## Running it
|
2018-09-01 13:32:04 +00:00
|
|
|
* `cp config.json.template config.json` and enter your configuration details. I've used a postgres database for development.
|
2018-08-26 22:31:53 +00:00
|
|
|
* Set the environment variable `FEDIVERSE_CONFIG` to point to the path of this file.
|
2018-09-01 13:32:04 +00:00
|
|
|
* `pip install -r requirements.txt`
|
|
|
|
* `yarn install`
|
|
|
|
* Make sure you have the Java 8 JRE (to run) or JDK (to develop) installed, and gradle
|
2018-08-26 22:31:53 +00:00
|
|
|
* For development, run `python manage.py runserver --settings=backend.settings.dev`
|
2018-08-27 11:15:17 +00:00
|
|
|
* In production, set the environment variable `DJANGO_SETTINGS_MODULE=backend.settings.production`
|
2018-09-01 13:32:04 +00:00
|
|
|
|