IPA Toolkit
backend

The IPA Toolkit implements helpful tools to master the mighty IPA process. This is the backend application which provides a GraphQL API.

Getting started

  1. Make sure that you have a working Visual Studio Code with Remote Containers configured.
  2. Create a Docker network ipa-toolkit-network
    docker network create ipa-toolkit-network
  3. Open the project in Visual Studio Code using Remote Containers.
  4. Don't forget to set your Git name and email
    git config user.name <name> and git config user.email <email>
  5. Install dependencies
    bundle install
  6. Initialize the database
    rails db:create
  7. Load database schema
    rails db:schema:load
  8. Run the server
    rails s