Skip to content
Developer Resources
Local Fides Deployment

Fides Deploy Development

This guide closely mirrors the advanced deployment guide page with some slight differences to account for running in a development environment.

Deployment Steps

  1. If you haven't already, make sure to pip install -e . and pip install nox
  2. nox -s "build(sample)" - This will build the relevant images and tag them correctly
  3. fides deploy up --no-pull - This command will spin up the sample application and seed all relevant data as normal. The --no-pull flag prevents Docker from trying to pull remote images and will instead use the ones built with `"build(sample)"
  4. Poke around and test as needed
  5. Finally, run fides deploy down to teardown the application.