Hosting Guide

Take your app live

General, provider-by-provider steps to host what you build with GENEiuX. Want a guide tailored to your exact generated app? Open any Web App / Mobile App / Website result and hit Deploy / Host it.

Web apps & websites

Vercel

React / Next.js web apps & static sites

  1. 1Push your project to a GitHub / GitLab repo.
  2. 2Go to vercel.com → New Project → import the repo.
  3. 3Set the build command (e.g. yarn build) and output directory (build / dist).
  4. 4Add environment variables under Settings → Environment Variables.
  5. 5Deploy. Vercel gives a free *.vercel.app URL with automatic HTTPS.
  6. 6Add a custom domain under Settings → Domains; SSL is issued automatically.

Netlify

Static sites & SPA front-ends

  1. 1Connect your Git repo at app.netlify.com, or drag-and-drop your build folder.
  2. 2Set build command (yarn build) and publish directory (build).
  3. 3Add environment variables in Site settings → Environment.
  4. 4Deploy — you get a free *.netlify.app domain with HTTPS.
  5. 5Add your domain in Domain management; free Let's Encrypt SSL is provisioned.

Render

Full-stack apps + managed databases

  1. 1Create a Web Service at render.com from your repo (or a Dockerfile).
  2. 2Choose runtime, build command and start command.
  3. 3Add a managed PostgreSQL / Redis instance if your app needs one.
  4. 4Set environment variables / secrets in the service Environment tab.
  5. 5Deploy — Render provides HTTPS on an *.onrender.com URL and custom domains with free SSL.

Mobile apps

Expo / EAS Build

React Native apps (Android + iOS)

  1. 1Install the CLI: npm i -g eas-cli, then run eas login.
  2. 2Run eas build:configure to create eas.json.
  3. 3Build binaries: eas build -p android and eas build -p ios.
  4. 4Test via Expo Go or an internal distribution build.
  5. 5Ship over-the-air JS updates with eas update — no full re-submission needed.

Google Play Store

Publishing Android apps

  1. 1Create a Google Play Developer account ($25 one-time).
  2. 2Produce a signed Android App Bundle (.aab) — eas build handles signing.
  3. 3In Play Console, create the app and complete the store listing + content rating.
  4. 4Upload the .aab to an internal / closed / production track.
  5. 5Submit for review; publish once approved.

Apple App Store

Publishing iOS apps

  1. 1Enroll in the Apple Developer Program ($99 / year).
  2. 2Create the app record in App Store Connect.
  3. 3Build & upload an .ipa (eas submit -p ios, or via Xcode / Transporter).
  4. 4Distribute a TestFlight build to testers first.
  5. 5Submit for App Review; release when approved.

Always keep API keys and secrets in your host's environment-variable settings — never commit them to your repository. Enable HTTPS/SSL (free on all providers above) before going live.

We use cookies to run GENEiuX and improve your experience. Choose how we may use them. Read our Cookie Policy and Terms.