Documentation Index
Fetch the complete documentation index at: https://docs.nometria.com/llms.txt
Use this file to discover all available pages before exploring further.
General
What is Nometria?
What is Nometria?
Which platforms does Nometria support?
Which platforms does Nometria support?
Do I need an AWS account?
Do I need an AWS account?
Can I deploy apps not built with a vibe-coding tool?
Can I deploy apps not built with a vibe-coding tool?
What regions can I deploy to?
What regions can I deploy to?
us-east-1 (N. Virginia), eu-west-1 (Ireland), ap-south-1 (Mumbai), and af-south-1 (Cape Town). More regions are coming soon. Enterprise customers can request additional regions.Deployment
How does deployment work?
How does deployment work?
- Packages your code (from GitHub or a ZIP upload)
- Provisions an EC2 instance in your chosen region
- Installs dependencies and builds your app
- Configures nginx with SSL (via Let’s Encrypt)
- Sets up DNS records for your subdomain or custom domain
- Starts your app with PM2 for process management
What tech stacks are supported?
What tech stacks are supported?
- Frontend: React, Vite, Next.js, static HTML/JS
- Backend: Node.js, Deno, Express, Next.js API routes
- Database: Supabase (self-hosted or cloud), Appwrite, PostgreSQL (via Drizzle/Prisma)
- Package managers: npm, pnpm (auto-detected from lockfile)
How do I connect my code?
How do I connect my code?
- GitHub — Authorize Nometria to read your repository. Best for ongoing development with two-way sync.
- ZIP upload — Export your project as a ZIP from your builder and upload it.
- Chrome Extension — Install the Nometria extension to export directly from your builder with one click.
What happens if my deployment fails?
What happens if my deployment fails?
Can I deploy a static HTML site without package.json?
Can I deploy a static HTML site without package.json?
index.html but no package.json, Nometria detects it as a static site and serves it directly via nginx — no build step required. This works for exported landing pages, vanilla JS apps, and static prototypes.Does Nometria support monorepos?
Does Nometria support monorepos?
Can I roll back to a previous deployment?
Can I roll back to a previous deployment?
nom rollback or from your dashboard. Rollbacks are instant — no rebuild required.Security & Compliance
Is my data secure?
Is my data secure?
- Encryption in transit: All traffic is encrypted via TLS 1.2+ (HTTPS enforced by default)
- Encryption at rest: EBS volumes and S3 storage use AES-256 encryption
- Network isolation: Each app runs on a dedicated EC2 instance with its own security group
- No shared databases: Your Supabase/Appwrite instance is fully isolated
- Access control: API keys are never stored in plaintext; secrets are injected via environment variables
Does Nometria access or store my source code?
Does Nometria access or store my source code?
Is Nometria SOC 2 compliant?
Is Nometria SOC 2 compliant?
What cloud provider do you use?
What cloud provider do you use?
Can I deploy to my own AWS account?
Can I deploy to my own AWS account?
How are environment variables and secrets handled?
How are environment variables and secrets handled?
.env on the instance and never logged or exposed in the dashboard UI. You can manage them via the CLI (nom env set) or the dashboard.Do you have DDoS protection?
Do you have DDoS protection?
Pricing & Billing
How much does Nometria cost?
How much does Nometria cost?
| Plan | Price | What you get |
|---|---|---|
| Hobby | Free | Shared server, 2 GB RAM, daily backups, community support |
| Starter | $25/mo | Dedicated server, 4 GB RAM, custom domain + SSL, 24h email support |
| Growth | $99/mo | 8 GB RAM, priority support, SOC 2 support, monitoring & RCA |
| Download | $499 one-time | Full source code, deploy anywhere, no monthly fees |
Is there a free tier?
Is there a free tier?
What payment methods do you accept?
What payment methods do you accept?
Can I cancel anytime?
Can I cancel anytime?
Why is Nometria cheaper than deploying myself?
Why is Nometria cheaper than deploying myself?
Do I get charged if my app is stopped?
Do I get charged if my app is stopped?
Can I upgrade or downgrade my plan?
Can I upgrade or downgrade my plan?
Custom Domains & SSL
How do I add a custom domain?
How do I add a custom domain?
- Go to App Details → Custom Domain in your dashboard
- Enter your domain (e.g.,
myapp.com) - Add the DNS records shown to your domain registrar (A record or CNAME)
- Nometria automatically provisions an SSL certificate
nom domain add myapp.comIs SSL included?
Is SSL included?
*.ownmy.app subdomains and custom domains. HTTPS is enforced by default.How long does DNS propagation take?
How long does DNS propagation take?
Can I use a subdomain instead of a root domain?
Can I use a subdomain instead of a root domain?
app.mycompany.com) to your Nometria deployment. Just add a CNAME record pointing to your *.ownmy.app address.Databases
Which databases are supported?
Which databases are supported?
- Supabase (self-hosted): Nometria deploys a full Supabase stack (PostgreSQL, GoTrue auth, PostgREST, Realtime) on your instance. Included at no extra cost.
- Supabase (cloud): Connect your own Supabase Cloud project. Your app uses the remote database while running on Nometria infrastructure.
- Appwrite (self-hosted): Full Appwrite stack deployed alongside your app.
- Drizzle/Prisma: Auto-detected and migrations run automatically during deployment.
Are database migrations run automatically?
Are database migrations run automatically?
run-migrations.sh— executed if present in your project- Drizzle (
drizzle.config.*) —db:pushordb:migrateis attempted - Prisma (
prisma/schema.prisma) —prisma migrate deployorprisma db pushis attempted - Lovable (
scripts/start.sh) —supabase db pushis attempted
/home/ubuntu/migrations.log on the instance.Can I connect an external database?
Can I connect an external database?
DATABASE_URL or SUPABASE_URL environment variable to point to any external PostgreSQL, Supabase, or compatible database. Nometria will not provision a local database in that case.CLI & Developer Tools
What is the nom CLI?
What is the nom CLI?
nom is Nometria’s command-line tool for deploying, managing, and monitoring your apps. Install it with:nom login and deploy with nom deploy.Does Nometria integrate with AI coding tools?
Does Nometria integrate with AI coding tools?
- Claude Code — MCP server plugin for deploy, preview, and status commands
- Cursor — Rules file auto-generated for deployment context
- Windsurf / Continue.dev — Config files auto-generated
- GitHub Copilot — Instructions file for deployment context
nom setup to generate all integration files.Can I use GitHub Actions for CI/CD?
Can I use GitHub Actions for CI/CD?
nom deploy in your own GitHub Actions workflow.Is there a preview/staging environment?
Is there a preview/staging environment?
nom preview to create a temporary staging preview of your app. Previews are free, expire in 2 hours, and are accessible via a unique URL. Great for testing before deploying to production.GitHub Sync
How does two-way GitHub sync work?
How does two-way GitHub sync work?
builder/latest branch for changes coming from your vibe-coding tool. You develop on main as usual. Nometria handles merging and conflict resolution between the two branches. Push to main to trigger a production deployment.What happens if there's a merge conflict?
What happens if there's a merge conflict?
Support & SLA
What support is included?
What support is included?
| Plan | Support level |
|---|---|
| Hobby | Community support (GitHub, docs) |
| Starter | 24h email support |
| Growth | Priority support with monitoring & RCA |
| Enterprise | Dedicated Slack channel, phone support, SLA |
What is the uptime SLA?
What is the uptime SLA?
How do I get help?
How do I get help?
- Docs: docs.nometria.com
- Email: hello@nometria.com
- Book a call: calendly.com/intro-nometria/30min
- Dashboard chat: Available on all pages
Backups & Monitoring
Are backups included?
Are backups included?
nom backup.Can I restore from a backup?
Can I restore from a backup?
What monitoring is included?
What monitoring is included?
- Instance health checks
- Deployment status tracking
- Resource usage monitoring (CPU, memory, disk)
- Proactive alerting
- Root cause analysis (RCA) for incidents
- Custom monitoring dashboards
Migration & Portability
Can I migrate away from Nometria?
Can I migrate away from Nometria?
- Download your full source code at any time
- Export your database via standard PostgreSQL tools
- SSH into your instance (available on Growth+ plans)
How do I migrate from another hosting provider?
How do I migrate from another hosting provider?
- Push your code to GitHub (or export as ZIP)
- Create a new migration in Nometria
- Select Custom / Other as your platform
- Connect via GitHub or upload your ZIP
- Deploy
Does Nometria handle data migration?
Does Nometria handle data migration?
Enterprise
What's included in the Enterprise plan?
What's included in the Enterprise plan?
- Multi-cloud deployment (AWS, GCP, Azure, DigitalOcean, Hetzner)
- Deploy to your own cloud account
- Custom instance sizes (16 GB+ RAM)
- Dedicated Slack channel and phone support
- Contractual SLA with financial credits
- SOC 2 compliance support
- Custom backup schedules and retention
- Priority feature requests
- Volume discounts for multiple apps
Can I deploy to multiple cloud providers?
Can I deploy to multiple cloud providers?
Do you offer a startup program?
Do you offer a startup program?
How do I contact sales?
How do I contact sales?