https://github.com/yazninja/cssweng
Description goes here
https://github.com/yazninja/cssweng
Last synced: about 2 months ago
JSON representation
Description goes here
- Host: GitHub
- URL: https://github.com/yazninja/cssweng
- Owner: yazninja
- Created: 2022-09-29T02:49:20.000Z (over 2 years ago)
- Default Branch: development
- Last Pushed: 2023-12-15T14:44:38.000Z (over 1 year ago)
- Last Synced: 2025-04-02T15:51:11.581Z (2 months ago)
- Language: JavaScript
- Size: 2.36 MB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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).