Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 1.09 KB

deployment.md

File metadata and controls

26 lines (16 loc) · 1.09 KB

Deployment

We’ve set up continuous deployment for production (master) and development branches and you just have to click "Deploy to netlify" in README to get started.

Please refer to netlify.toml file and Netlify CD docs.

You can still deploy manually with Netlify. Install Netlify CLI if needed npm install -g netlify-cli, then login with netlify login and just run the following:

npm run deploy
# or
yarn deploy

# for production website
npm run deploy:prod

Note: Please stop the Quasar development process (quasar dev) before build/deploy to prevent the wrong environment file from being used.

Of course you can also deploy manually without Netlify by just using yarn build and publish the dist folder with another hosting provider.

Logging

This template includes integration with Sentry to make it much easier to debug your code in production environment.

Have a look at .env.example to set appropriate variables and enable the integration.