Skip to main content
When you click Deploy, Nometria provisions a complete production stack on AWS — no AWS console required.

What gets created

1

EC2 instance

An Amazon EC2 instance is launched in your chosen region. Nometria selects an appropriate instance type based on your app’s detected stack (a lightweight React app gets a different instance than a full-stack Python + Node app).The instance runs your app inside a Docker container for process isolation and clean restarts.
2

DNS records via Route53

Nometria creates the DNS records for your custom domain using Amazon Route53. An A record or CNAME is created pointing to your EC2 instance’s IP.If you haven’t added your domain yet, a free *.nometria.com staging URL is provisioned immediately.
3

SSL certificate

TLS certificates are issued automatically via AWS Certificate Manager (ACM). HTTPS is enforced by default — HTTP requests are redirected to HTTPS.
4

App build and start

Your code is built inside the container:
  • Node/React: npm install && npm run build, then npm run start (or served by nginx for static apps)
  • Python: pip install -r requirements.txt && uvicorn main:app (or gunicorn)
  • Docker: docker build && docker run
Build logs are streamed to your dashboard in real time.
5

Health check

Nometria polls your app’s root URL until it returns a 200. Once healthy, your domain goes live and deployment is marked complete.

Deployment timeline

PhaseTypical time
Instance provisioning60–90 seconds
DNS propagation1–5 minutes (up to 48h for some registrars)
App build1–4 minutes depending on dependencies
SSL issuance1–3 minutes
Total (first deploy)~5–10 minutes
Subsequent deploys skip provisioning and are typically under 2 minutes.

Redeployments

Every push to your connected GitHub branch triggers an automatic redeploy:
  1. Nometria pulls the latest commit
  2. Rebuilds the Docker image
  3. Does a zero-downtime swap — the old container stays live until the new one is healthy
  4. Updates the deployment log with the commit SHA and timestamp
You can also trigger a manual redeploy from the dashboard at any time.

Rollbacks

Every successful deployment is tagged with its Git commit SHA. To roll back:
  1. Dashboard → your project → Deployments
  2. Find the previous successful deployment
  3. Click Redeploy this version
Nometria redeploys that exact commit — same code, same environment variables as of that deploy.

Regions

Available AWS regions:
  • us-east-1 — US East (N. Virginia)
  • us-west-2 — US West (Oregon)
  • eu-west-1 — Europe (Ireland)
  • ap-southeast-1 — Asia Pacific (Singapore)
Choose the region closest to your primary users for lowest latency. If you’re not sure, us-east-1 is a good default.

Next steps

Custom domains & DNS

Point your own domain to your deployment

Environment variables

Add secrets and per-environment config

Database setup

Connect Supabase or Appwrite

Two-way sync

Keep your builder and production in sync