📖 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 buildThen run the app in production mode:
npm startInstall the Pulumi CLI
Install the infrastructure dependencies and configure your AWS credentials:
cd infrastructure
npm install
pulumi config set aws:region <your-region>
pulumi config set aws:accessKey <your-access-key>
pulumi config set aws:secretKey <your-secret-key> --secret
cd ..Deploy the infrastructure:
npm run deployBuild the application and deploy it to the infrastructure:
npm run build-deployThis starter repo is completely within the AWS free tier, so no need to worry about any costs.