An open API service indexing awesome lists of open source software.

https://github.com/yazninja/cssweng

Description goes here
https://github.com/yazninja/cssweng

Last synced: about 2 months ago
JSON representation

Description goes here

Awesome Lists containing this project

README

        

# Quasar App (Sports Betting Data Compiler)

A Quasar Project

### Build Dependencies
- [Node](https://nodejs.org/en/download/) (LTS Version recommended)
- [Visual Studio Build Tools](https://aka.ms/vs/17/release/vs_BuildTools.exe) -> Desktop Development with C++
##### Optional: **yarn/ pnpm thru npm** (recommended)
```bash
npm install -g yarn #installing yarn
npm install -g pnpm #installing pnpm
```

## Install the dependencies
```bash
yarn
# or
npm install
# or
pnpm install # recommended for node v19+
```

### Start the app in development mode (hot-code reloading, error reporting, etc.)
```bash
yarn start
# or
npm start
# or
pnpm start
```

### Build the app with debug console
```bash
yarn build:debug
# or
npm build:debug
# or
pnpm build:debug
```

### Build the app without debug console
```bash
yarn build
# or
npm build
# or
pnpm build
```

### Lint the files
```bash
yarn lint
# or
npm run lint
```

### Format the files
```bash
yarn format
# or
npm run format
```

### Build the app for production
```bash
yarn build:production
# or
npm build:production
# or
pnpm build:production
```

### Customize the configuration
See [Configuring quasar.config.js](https://v2.quasar.dev/quasar-cli-vite/quasar-config-js).