Skip to content

Commit

Permalink
Update config
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurenceHo committed Jun 21, 2024
1 parent 43cd452 commit 0c67821
Show file tree
Hide file tree
Showing 59 changed files with 5,613 additions and 999 deletions.
5 changes: 3 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
/node_modules
.eslintrc.js
/src-ssr
src/css/**
src/assets/**
/src/css/**
/src/assets/**
/coverage
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
npm install
cd ./server
npm install
npm run types
npm run test:server
- name: Write .env file
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: Build and deploy API for demo app

on:
push:
branches:
- develop
paths:
- "server/src/**"
pull_request:
branches:
- master
Expand Down Expand Up @@ -50,6 +45,7 @@ jobs:
npm install
cd ./server
npm install
npm run types
npm run test:server
- name: Write .env file
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: Build and deploy demo web app

on:
push:
branches:
- develop
paths:
- "src/**"
pull_request:
branches:
- master
Expand Down
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
.DS_Store
.thumbs.db
node_modules
node_modules/

# Quasar core related directories
.quasar
/dist

dist/
coverage/
# Log files
*.log

Expand Down
8 changes: 6 additions & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
npm run lint
bun run types
bun run lint
bun run format
cd server
npm run lint
bun run types
bun run lint
bun run format
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ information in the `server` folder. [here](server/README.md)
### Install the dependencies

```bash
$ npm install
$ bun install
```

### Start the app in development mode (hot-code reloading, error reporting, etc.)
Expand All @@ -178,19 +178,19 @@ $ quasar dev
or

```bash
$ npm run serve
$ bun run serve
```

### Lint the files

```bash
$ npm run lint
$ bun run lint
```

### Run unit tests

```bash
$ npm run test
$ bun run test
```

### Build the app for production
Expand All @@ -202,7 +202,7 @@ $ quasar build
or

```bash
$ npm run build
$ bun run build
```

### Customize the Quasar configuration
Expand Down
Binary file added bun.lockb
Binary file not shown.
Loading

0 comments on commit 0c67821

Please sign in to comment.