-
Notifications
You must be signed in to change notification settings - Fork 11
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
2 changed files
with
13 additions
and
9 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 |
---|---|---|
|
@@ -2,3 +2,5 @@ dist/ | |
node_modules/ | ||
*.swp | ||
**/.DS_Store | ||
.cache/ | ||
.temp/ |
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,12 +1,14 @@ | ||
# gbdev landing page | ||
# gbdev website | ||
|
||
Source repository of the gbdev landing website. GitHub Pages serves the content of the `master` branch on [gbdev.github.io](https://gbdev.github.io). | ||
Game Boy development website hosted at [gbdev.io](https://gbdev.io), powered by Vuepress 2.x | ||
|
||
> Development is done on the `dev` branch due to GitHub's restriction on branches for user pages. | ||
```bash | ||
# Install dependencies | ||
npm install | ||
|
||
Build and deploy: | ||
``` | ||
npx vuepress build list/ | ||
cp list/.vuepress/dist/* dist/list -R | ||
npx gh-pages -d dist -b master | ||
``` | ||
# Start a local hot-reloading development server at http://localhost:8080 | ||
npm run dev | ||
|
||
# Build website | ||
npm run build | ||
``` |