This demo is a test playground for upcoming features of Uprising project.
Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --openTo create a production version of your app:
npm run buildBuild the Docker image:
docker buildx b -t frontend .You can then run the Docker image with:
docker run -e PUBLIC_VOSO_URL -p 3000:3000 frontend