Skip to content

paladyne-io/learn_quasar

Repository files navigation

learn_quasar

A series of articles and interactive examples explaining how to use the Quasar framework https://quasar.dev to develop applications that can run on a variety of devices.

This is an instructional app aimed at beginners starting with preparation and including how to use Visual Studio Code.

The app is hosted here: https://learn-quasar-p764s.ondigitalocean.app

and here: https://paladyne-io.github.io/learn_quasar/

I recently registered the domain www.makeaweb.app which is linked to the Github Pages site.

Features of interest:

After downloading or cloning this repository... Open a terminal and 'cd' into the directory (type 'cd' followed by a space, then drag the folder onto the terminal window and press Enter.) Then type the commands below.

Install the dependencies

yarn
# or
npm install

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

quasar dev

After typing 'quasar dev', your default web browser should open to display the app. Press Control and C keys together to exit the development environment. Type 'code .' in the terminal and press Enter to open Visual Studio with the project folder displayed in the panel on the left.

Type 'quasar dev' again to renter the dev environment. Changes you make in the src folder should be updated in the browser without manually reloading the page.

Prepare your app for hosting on a web server by running 'quasar build'.

Build the app for production

quasar build