May 01, 2025
Deploy a Remix App on your server with this step-by-step guide.

Start by creating a new Remix project locally using the following command:
npx create-remix@latest
This command initializes a new Strapi project in a folder named strapi.
Follow the prompts to configure your project:
Once complete, navigate to the project folder and run npm run dev to verify the setup.
Create a new repository on GitHub, and come back to your terminal to push the repository to GitHub.
git remote add origin git@github.com:<your-repository>
git push -u origin HEAD
Create new app > Import from GitHubImportConfig tab and locate Build settings./build and click SaveServer settingsnpm run startSaveOnce you went through all the steps mentioned above, go ahead and Deploy your Remix application. When the deployment is complete click on the Preview button to access your deployment.
