Zum Inhalt springen

Deployment

Dieser Inhalt ist noch nicht in deiner Sprache verfügbar.

LaunchFast can be deployed literally anywhere. Following are the outputs of LaunchFast project configurable via .env to suit your ideal environment:

Every server that supports sending responses over Express.js/Node.js framework can be used to launch with LaunchFast - To use this, set the DEPLOYMENT_PLATFORM environment variable to node in the environment or the .env file. Run npm run build && npm run preview to launch it.

Deploy to Vercel

This is by default, just go ahead and deploy with Vercel with the following:

Terminal window
vercel deploy --prod

Read more on Deploy to Vercel guide.

Deploy to Netlify

To deploy to Netlify, update the .env file to have the DEPLOYMENT_PLATFORM variable as netlify, and then run the following:

Terminal window
npm run build && netlify build && netlify deploy --prod

Read more on Deploy to Netlify guide.

Deploy to Fly.io

To deploy to Fly.io, update the .env file to have the DEPLOYMENT_PLATFORM variable as fly, and then run the following:

Terminal window
fly launch && fly deploy