https://open5e.com
A JSON API for the D&D 5e gamesystem
Announcement: API V2 has officially launched, and V1 is now in maintenance. Calls now require a server prefix
If you are using the old V1 API, you will need to prefix your calls with /v1/ (eg. api.open5e.com/v1/monsters). This should resolve issues for anyone currently consuming v1 API and having issues with their site.
This has come after many months of dicussion within our discord and on this repo (and the inclusion of a 299 deprecation warning in every response header). Unfortunately, since we do not require registration for API keys, we have no way to contact consumers other than to update and hope folks find their way here when things break.
The v1 API is now in maintenance, and will not recieve content or functionality updates. We recommend migrating to v2, but will keep the v1 running for as long as it doesn't consume too much resources to do so.
All v1 content is still available for hosting your own version, if required
Table of contents generated with markdown-toc
Open5e is a community project driven by a small number of volunteers in their spare time. We welcome any and all contributions! Please join our Discord to help out: https://discord.gg/9RNE2rY or check out the issue board if you'd like to see what's being worked on!
The API uses the Django REST Framework for it's browsability and ease of use when developing CRUD endpoints. It uses django's default SQLite database, and pulls the data from the /data directory.
Pipenv is used to install all required packages from the Pipfile at the project root. Use the following command after cloning the project or switching branches.
pipenv install --devCrate a local database and import game content.
pipenv run python manage.py quicksetup --noindexTo make sure the API is always using your updated code, this command must be run again if:
- You add/remove/edit Game Content
- You edit Python code
- You switch git branches
To use the search function, you must build the search index by running the above command without the --noindex flag.
pipenv run python manage.py quicksetupRun the server locally. This server is only for development and shall not be used in production. The server will be available at http://localhost:8000.
pipenv run python manage.py runserverIf you would like to host the API yourself locally, we suggest using gunicorn as your wsgi server. Below is an equivalent command to what we use in production, which makes the server available at http://localhost:8888.
gunicorn -b :8888 server.wsgi:applicationYou can use our Dockerfile as inspiration, but it likely will not work without significant edits to your operating environment. We have customized our production environment to use it.
After completing a build, you can generate an OAS file to be used by another application.
pipenv run python manage.py spectacular --color --file openapi-schema.yml` to build the OAS file.See contribution guide.
Tests are located in the api/tests directory. These should be run before pushing new changes to the main repository. These tests require that the api is running at http://localhost:8000.
pipenv run pytestApproval tests are run against the approved files in api/tests/approved_files as *.approved.* . If a test fails then the recieved input will be stored in a *.recieved.* file. If you wish to approve the changes, replace the old approved file with the recieved file.
Recieved files shall not be included in the git repo.
This deployment has been tested using DigitalOcean Apps with Docker Hub.
To start up the server from scratch on a droplet:
git pull https://github.com/open5e/open5e-api
export SECRET_KEY=a_new_secret_key
export SERVER_NAME=whatever.yourdomain.com
cd open5e-api/
docker-compose up- Create a fork on Github. This is used to automatically deploy whenever you make a change.
- Login with your Github account on Railway.app and give it access to manage your forked repository.
- Create a new Project and choose 'Deploy from GitHub repo'. Select your fork in the list.
- Keep all settings default and deploy. Accept when Railway asks to copy variables existing variables from the repository.
- Add the variable
PORTwith the value8888. - Add the variable
SERVER_NAMEwith the Railway-provided domain or add your own. - Push a commit to Github and watch your open5e-api redeploy in minutes!
With docker installed, you can build the project with provided Dockerfile
docker buildThis docker app can then be deployed with any provider.
