QUICK NAVIGATION - nself-org/cli GitHub Wiki
Find what you need in seconds.
| Task | Go to |
|---|---|
| Install nself | Installation Guide |
| Get running in 5 minutes | Quick Start |
| See a full demo | Demo Setup |
| Understand what nself is | Architecture Overview |
| Read FAQs | FAQ |
| Task | Go to |
|---|---|
| Design a database schema | Database Workflow |
| Run migrations | db command |
| Seed test data | db seed |
| Generate mock data | db mock |
| Create backups | Backup Guide |
| Generate TypeScript types | db types |
| Connect from frontend | API Reference |
| Task | Go to |
|---|---|
| Deploy to a server | Deployment Guide |
| Set up environments | Environment Management |
| Configure SSL | SSL Setup |
| Manage secrets | Secrets Management |
| Zero-downtime deployment | SSH Deployment |
| Deploy to Kubernetes | K8s Commands |
| Choose a cloud provider | Cloud Providers |
| Task | Go to |
|---|---|
| Configure environment variables | Environment Variables |
| Add custom services | Custom Services |
| Enable optional services | Optional Services |
| Set up monitoring | Monitoring Bundle |
| Configure startup options | Start Command Options |
| Set up admin UI | Admin UI |
| Multi-app setup | Multi-App Setup |
| Task | Go to |
|---|---|
| Add authentication | Built-in - OAuth Setup |
| Add payments (Stripe) | Stripe Plugin |
| Add real-time features | Real-Time Features |
| Add file storage | Optional Services |
| Add search | Optional Services |
| Add email service | Optional Services |
| Add custom domains | Custom Domains Tutorial |
| Task | Go to |
|---|---|
| Multi-tenancy | Organization Management |
| Billing & subscriptions | Billing & Usage |
| White-label branding | Examples |
| Usage tracking | Billing & Usage |
| Build a SaaS in 15 min | SaaS Tutorial |
| Task | Go to |
|---|---|
| List available plugins | Plugin Overview |
| Install a plugin | plugin install |
| Configure Stripe | Stripe Integration |
| Configure GitHub | GitHub Plugin |
| Create a custom plugin | Plugin Development |
| Task | Go to |
|---|---|
| Fix common issues | Troubleshooting Guide |
| Run diagnostics | doctor command |
| Check service health | health command |
| View logs | logs command |
| Billing issues | Billing Troubleshooting |
| White-label issues | White-Label Troubleshooting |
| Task | Go to |
|---|---|
| See code examples | Examples |
| Follow step-by-step tutorials | Tutorials |
| Build a SaaS | SaaS Tutorial |
| Build a marketplace | Marketplace Tutorial |
| Set up agency platform | Agency Tutorial |
| Database examples | Feature Examples |
| Task | Go to |
|---|---|
| View all commands | Commands Overview |
| Printable cheat sheet | Command Reference |
| Database commands | db command |
| Deployment commands | deploy command |
| Performance commands | perf & bench |
| Plugin commands | plugin command |
| Task | Go to |
|---|---|
| System architecture | Architecture |
| Project structure | Project Structure |
| Build system | Build Architecture |
| Available services | Services Overview |
| Service templates | Service Templates |
| API reference | API Reference |
| Task | Go to |
|---|---|
| Contribute to nself | Contributing Guide |
| Development setup | Development |
| Create service templates | Service Templates |
| Create plugins | Plugin Development |
| Write documentation | Contributing |
| Task | Go to |
|---|---|
| Security best practices | Security Guide |
| Security audit | Security Audit |
| SSL/TLS setup | SSL Setup |
| Manage secrets | Secrets Management |
# See: Quick Start Guide
nself init
nself build
nself start
nself db schema apply schema.dbml# See: Database Workflow
nself db schema scaffold saas
# Edit schema.dbml
nself db schema apply schema.dbml
nself db types generate# See: Deployment Guide
nself env create prod production
# Edit server.json
nself deploy prod
nself prod status# See: Plugin Guide
nself plugin list
nself plugin install stripe
# Configure .env
nself build && nself restart
nself plugin stripe sync- Search the docs - Use your browser's search (Cmd/Ctrl + F)
- Check the FAQ - FAQ
- View all commands - Commands Overview
- Ask the community - GitHub Discussions
- Report an issue - GitHub Issues