Skip to content

Commit

Permalink
Release 0.3.3 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
BracketJohn authored Jan 5, 2023
1 parent 237fcfd commit 8a281d8
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 22 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,9 @@ jobs:

# Check building
- run: npm run build

# start dev-app and curl from it
- run: "timeout 30 npm run dev & (sleep 10 && curl --fail localhost:3000)"

# start prod-app and curl from it
- run: "timeout 30 npm run start & (sleep 10 && curl --fail localhost:3000)"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ npm run dev
npm run build

# start production build
node .output/server/index.mjs
npm run start
```

NOTE: For full functionality you'll need to add your own github oauth app client id and client secret in the [`NuxtAuthHandler`](./server/api/auth/%5B...%5D.ts). See [the next section](#environment-variables) for more on this and other configuration.
Expand Down
40 changes: 21 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"preview": "nuxt preview",
"start": "nuxt preview",
"postinstall": "nuxt prepare"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.2.0",
"@nuxtjs/tailwindcss": "^6.1.0",
"@sidebase/nuxt-auth": "^0.3.1",
"@sidebase/nuxt-auth": "^0.3.3",
"nuxt": "^3.0.0",
"typescript": "^4.9.3"
}
Expand Down

0 comments on commit 8a281d8

Please sign in to comment.