Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .env.local.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Fluree Documentation - Claude Code Environment Variables
#
# These variables enable enhanced documentation verification when using Claude Code.
# They are NOT used by Docusaurus — they're read by Claude Code from your shell environment.
#
# To use: Add these exports to your shell profile (.zshrc, .bashrc, etc.)
# or source this file before starting Claude Code:
#
# source .env.local.example # after filling in values
#
# See CLAUDE.md for full documentation.

# URL of a running Fluree server for testing documentation examples
# Example: http://localhost:58090
export FLUREE_TEST_SERVER_URL=

# Path to local fluree/db repository for source code reference
# Example: /Users/yourname/projects/fluree/db
export FLUREE_DB_REPO_PATH=

# Path to local fluree/server repository for source code reference
# Example: /Users/yourname/projects/fluree/server
export FLUREE_SERVER_REPO_PATH=
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ build
.docusaurus
bin

.DS_Store
.DS_Store

# Local environment variables (copy .env.local.example to .env.local)
.env.local
Loading