This project uses Vite and supports multiple environments (Development, Developer, QA, Production).
Install AptekaOne with npm
npm installEach environment has its own .env file:
Development → .env.development
Developer → .env.developer
QA → .env.qa
Production → .env.production
Run in Development mode
npm run devRun in Developer mode
npm run developerRun in QA mode
npm run qaRun in Production mode
npm run productionDefault build
npm run build Build in dev mode
npm run build:devBuild in Developer mode
npm run build:developerBuild in QA mode
npm run build:qaBuild in Production mode
npm run build:prod To run tests, run the following command
npm run test npm run lint npm run format