This is a website dedicated to the creation of Monsters in Dungeons and Dragons 5th edition.
Very WIP, currently only intended for personal use. A temporary somewhat live version of this repository can be found here.
All source code is available under the GNU General Public License. See LICENSE for details.
- Ruby (and Bundler)
- PostgreSQL
- Node.js
- Yarn
To run Monster Maker yourself, clone the repo and then install the needed dependencies:
$ bundle install
$ yarn install
Then set up the database:
$ rails db:create
$ rails db:migrate
Finally, run the test suite to verify that everything is working correctly:
$ rspec
If the test suite passes, you'll be ready to run the app in a local server:
$ rails server