for fine-tuning dataset database created by fintuser
- Set up
.env.cp .env.example .env
- Set up the correct node version.
nvm use
- Install the dependencies.
npm install
- Install prisma, then.
npx prisma generate
- Run the database.
docker-compose up -d
Should be good to go now
Run the Vite dev server:
npm run devFirst, build your app for production:
npm run buildSetup your environment:
NODE_ENV='production'Then run the app in production mode:
npm startNow 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 and the server
server.jsbuild/serverbuild/client
Take a look at the provided Dockerfile for further details on how to configure a production environment.