bknd-production-config

Configure BKND production deployment with security and environment settings.

1|Updated Jan 23, 2026
One-click install
npx skills add https://github.com/cameronapak/melos --skill bknd-production-config
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bknd-production-config
Source: https://github.com/cameronapak/melos/tree/main/.agents/skills/bknd-production-config
Command: npx skills add https://github.com/cameronapak/melos --skill bknd-production-config

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill guides developers in configuring a BKND application for production deployment, ensuring security, stability, and proper environment handling.

Core Features & Use Cases

  • Production mode activation
  • JWT and cookie security configuration
  • Guard-based access control
  • CORS and media storage setup
  • Deployment checklist and environment variable usage

Quick Start

  1. Enable production mode by setting isProduction: true in bknd.config.ts or via environment variables.
  2. Create a strong JWT secret in your environment (not hard-coded).
  3. Enable Guard and define roles to enforce permissions.
  4. Configure storage and CORS in the config, and ensure production-ready environment variables.

Frequently Asked Questions about bknd-production-config

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I configure a BKND application for production deployment?

Configure a BKND application for production by setting isProduction to true in bknd.config.ts, defining environment variables, and applying security blocks for JWT, Guard, and CORS.

How do I secure JWT and cookies in a BKND production environment?

Secure JWT and cookies in a BKND production environment by creating a strong JWT secret in your environment variables and applying security configuration blocks via bknd.config.ts.

What is the best way to set up access control and CORS in BKND?

Set up access control and CORS in BKND by enabling Guard to define user role permissions and configuring Cross-Origin Resource Sharing policies within your bknd.config.ts file.

Can I manage media storage and environment variables using bknd.config.ts?

Yes, you can manage media storage and environment variables using bknd.config.ts by configuring storage adapters and ensuring production-ready environment variables are properly passed to the application.

Why does my BKND application need environment hardening before deployment?

Environment hardening is needed before deployment to enforce security and stability, preventing unauthorized access by ensuring configuration blocks and access policies are strictly applied.