Skip to main content
DevDaily uses a JSON configuration file to customize behavior, appearance, and integrations. Configuration supports both local (per-project) and global (user-wide) settings with JSON Schema support for IDE autocomplete.

Configuration File Locations

DevDaily searches for configuration files in the following order:
Local configuration overrides global configuration. Settings are merged, with local values taking precedence.

JSON Schema Support

Enable autocomplete and validation in your IDE by adding the $schema field:
.devdaily.json
This provides:
  • IntelliSense/autocomplete in VS Code, JetBrains IDEs, and other editors
  • Inline documentation for all configuration options
  • Validation warnings for invalid values

Example Configuration

Here’s a complete example .devdaily.json file:
.devdaily.json

Configuration Categories

Display Settings

object
Color theme for terminal output
boolean
default:"true"
Show ASCII art banners
boolean
default:"true"
Enable loading spinners and animations
boolean
default:"false"
Use compact output with less whitespace

Command Aliases

object
Custom command aliases for faster access

Output Preferences

object
Output formatting and behavior

Git Settings

object
Git repository configuration

Multi-Project Support

array
List of projects for cross-project summaries
string
Currently active project name

Keyboard Shortcuts

object
Keyboard shortcuts for interactive commands

Journal / Auto-Snapshots

object
Work journal and auto-snapshot configuration. See Git Hooks for details.

AI/Copilot Settings

object
GitHub Copilot CLI configuration

Managing Configuration

View Current Configuration

Edit Configuration

Reset to Defaults

Delete the configuration file and run devdaily init:

Secrets Management

Sensitive values like API tokens and webhook URLs should be stored in a separate secrets file:
Never commit .devdaily.secrets.json to version control. DevDaily automatically adds it to .gitignore during devdaily init.

Environment Variables

Configuration values can also be set via environment variables:

Next Steps

Git Hooks

Set up automatic snapshots with git hooks

Project Management

Integrate with GitHub, Jira, or Linear

Notifications

Configure Slack and Discord webhooks

PR Templates

Customize PR descriptions with templates