Skip to content

Commit

Permalink
Fix Nox Docs Link (#3121)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasLaPiana authored Apr 21, 2023
1 parent b31fd78 commit d39da31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/fides/docs/development/developing_fides.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ The primary developer interface for Fides is via a tool called Nox. Nox is a pur

Additionally, much of what `nox` helps abstract is related to Docker. This usually makes it possible to troubleshoot potential `nox` issues by using various Docker commands directly.

If you haven't already, read the [Requirements Installation Guide](overview.md#requirements) to get up and running with the required tools and optimal configurations.

## Terminology

For the purposes of this documentation, there is some Nox-specific terminology that is used and is helpful to understand before reading the rest of the guide.
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
def open_docs(session: nox.Session) -> None:
"""Open the webpage for the developer/contribution docs."""
dev_url = "http://localhost:8000/fides/development/developing_fides/"
prod_url = "https://ethyca.github.io/fides/stable/development/developing_fides/"
prod_url = "https://ethyca.github.io/fides/dev/development/developing_fides/"

if "dev" in session.posargs:
webbrowser.open(dev_url)
Expand Down

0 comments on commit d39da31

Please sign in to comment.