Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1.03 KB

README.md

File metadata and controls

34 lines (22 loc) · 1.03 KB

🧮 ABACUS - React Frontend

Crowdin

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

Deploying

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/

Running in Docker

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