This template is a basic Remix + Express app powered by Edgio. You may create a new property using this template from the Edgio Console.
To get started with local development, run the following to install the Edgio CLI and start the development server:
# Install the latest version of the Edgio CLI
npm i -g @edgio/cli@latest
npm install
npm run edgio:dev
To test the production build locally, run the following commands:
npm run edgio:build
edgio run -p
When you're ready to deploy, run the following commands:
npm run edgio:deploy
Check out the Edgio + Remix Documentation for more details.
📖 See the Remix docs and the Remix Vite docs for details on supported features.
Run the Vite dev server:
npm run dev
First, build your app for production:
npm run build
Then run the app in production mode:
npm start
Now you'll need to pick a host to deploy it to.
If you're familiar with deploying Node applications, the built-in Remix app server is production-ready.
Make sure to deploy the output of npm run build
build/server
build/client