Skip to content

Tetra-cube/open5e-api

 
 

Repository files navigation

open5e is being rebuilt in Django and Vue.js!

Check the Beta Site and Beta API to see what's up!

We have a discord going for discussing the rebuild, and I hope you'll join us! https://discord.gg/9RNE2rY

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!

Starting the Server

The Django API uses Django REST Framework for its browsability and ease of use when developing CRUD endpoints.

Server Quickstart

The server runs in a docker container. You'll need to first install docker on your system, then getting it running is extremely simple:

First, you will need to install Docker If you are using Windows, you will need to either run a linux VM, or install the Ubuntu CLI from the microsoft store. This is due to the scripts causing syntax errors in windows, as they are designed for bash. If you install Ubuntu from the microsoft store follow these steps: (https://medium.com/@sebagomez/installing-the-docker-client-on-ubuntus-windows-subsystem-for-linux-612b392a44c4)

cd into the root /open5e directory in the shell program of your choice, then:

export OPEN_5E_ROOT=`pwd` #set the /server folder as the root of the Python project
export SECRET_KEY='@pt#ouh)@!c+2eh(!aj_vtc=s7t$uk-l1!ry3^fcercz%si01@' # this should be a nukable test key that you're manually replacing at startup time for production
docker-compose build dev
docker-compose up dev

If you need to work with the db, serializers, or other django-level elements, you will need to be running the docker container then exec into it:

bash -c "clear && docker exec -it open5e_dev_1 sh"

From there you can apply any typical python/django commands. Some common and useful commands include:

pipenv run python manage.py makemigrations #create a new migration for the db
pipenv run python manage.py migrate #apply any pending db migrations
pipenv run python manage.py rebuild_index #rebuild search index to reflect model or indexer changes

You will want to leave the server terminal running while you launch the UI in a separate termainal so you can observe requests.

If all you want to test against is the API/backend, you're done! Otherwise you'll want to open another window and...

Build and run the UI layer

To run the UI layer, you will need to clone the repo at https://github.com/eepMoody/open5e and follow the instructions there.

About

The api for open5e.com

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 91.2%
  • HTML 5.5%
  • Shell 2.8%
  • Dockerfile 0.5%