Documentation
  • 👋Welcome to Cerberus
  • Overview
    • 💡What we do
    • ✨Our Features
  • Product Guides
    • 💡Core concepts
    • 🍎Creating an App
    • 📎Modeling your domain
    • 📄Creating policies
  • Tutorial
    • 🛠️Getting set up
      • 🌠Cloning project
      • 👷Setting up workspace
      • 🏃‍♂️Build and run app
    • 📏Creating static rules
      • Create an account
      • Add migrations
    • ✍️Implementation
      • Backend
        • Migrate existing data
        • Routes
        • Services
          • User
          • Project
          • Sprint
          • Story
      • Frontend
        • Settings
        • Projects
        • Sprints
        • Stories
  • APIs
    • 🎨REST API
    • 🖥️Websocket API
  • Migrations
    • 🐧Scripting language
    • 🏃‍♂️Running migrations
Powered by GitBook
On this page
  1. Tutorial
  2. Creating static rules

Create an account

PreviousCreating static rulesNextAdd migrations

Last updated 3 months ago

Go to and create an account

After logging in, create an App with and call it Acme, with a description of your choice.

Then generate a new API key.

In the project checked out before, navigate to 'backend/go' and add the following to the '.env' file created earlier, replacing the text in quotes with your own API secret:

CERBERUS_API_SECRET = "YOUR CERBERUS API SECRET"

Next, add the follwing to the 'evironment' section of the cerberus-example-app service in 'docker-compose.yaml', replacing the text in quotes with your own API key:

environment:
  - CERBERUS_HOST = "https://cerberus-api.a11n.io"
  - CERBERUS_API_KEY = "YOUR CERBERUS API KEY"
  - CERBERUS_API_SECRET = ${CERBERUS_API_SECRET}
📏
https://cerberus.a11n.io