First, run the development server:
yarn workspace @adeira/abacus-backoffice dev
Open http://localhost:3000 with your browser to see the result. To analyze the production bundle run:
ANALYZE=true yarn workspace @adeira/abacus-backoffice build
Deployments are currently manual and waiting to be automated. Run the following command from adeira/universe
root to deploy to Vercel:
vercel deploy --prod src/abacus-backoffice
Visit: https://abacus-backoffice.vercel.app/
It's certainly possible (and recommended) to run the Next.js application directly. However, in production, it runs in Docker. You can do the same if you want:
(cd src/abacus-backoffice && docker build --progress=plain . --tag abacus-backoffice)
docker run -p 5001:5001 abacus-backoffice