Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 782 Bytes

README.md

File metadata and controls

55 lines (42 loc) · 782 Bytes

OpenMeet (openmeet)

Building Communities

Install the dependencies

yarn
# or
npm install

Copy the environment variables and set the values

cp .env.example .env

Start the app in development mode (hot-code reloading, error reporting, etc.)

yarn dev
# or
npm run dev

Lint the files

yarn lint
# or
npm run lint

Build the app for production

yarn build
# or
npm run build

Test the app

yarn test
# or
npm run test

Adding variables to the build

  • Add to .env
  • Add to quasar.config.ts (env section)
  • Add to Dockerfile (window.APP_CONFIG section)

Customize the configuration

See Configuring quasar.config.js.