-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,49 @@ | ||
# games.wowellworld.com | ||
|
||
Simple Vue app for linking to daily games in one place. | ||
|
||
## Install | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
## Development | ||
|
||
```bash | ||
npm run dev | ||
``` | ||
|
||
## Generate PWA Assets | ||
|
||
This will generate all proper asset icons for the PWA. The source icon is located at `public/icon.svg`. | ||
|
||
```bash | ||
npm run generate-pwa-assets | ||
``` | ||
|
||
## Build for Production | ||
|
||
This site is automatically deployed to GitHub Pages using [GitHub Actions](./.github/workflows/deploy.yml). | ||
|
||
It can be manually built to the `dist` directory using | ||
|
||
```bash | ||
npm run build | ||
``` | ||
|
||
## Testing | ||
|
||
```bash | ||
npm run test | ||
``` | ||
|
||
## Linting & Fixing | ||
|
||
```sh | ||
npm run lint | ||
``` | ||
|
||
```sh | ||
npm run fix | ||
``` |