The IPA Toolkit implements helpful tools to master the mighty IPA process. This is the backend application which provides a GraphQL API.
- Make sure that you have a working Visual Studio Code with Remote Containers configured.
- Create a Docker network
ipa-toolkit-network
docker network create ipa-toolkit-network
- Open the project in Visual Studio Code using Remote Containers.
- Don't forget to set your Git name and email
git config user.name <name>
andgit config user.email <email>
- Install dependencies
bundle install
- Initialize the database
rails db:create
- Load database schema
rails db:schema:load
- Run the server
rails s