Skip to content

Commit 586018b

Browse files
authoredNov 21, 2019
Merge pull request #19 from Masth0/documentation
Documentation
2 parents a8a1a33 + 6e659a9 commit 586018b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+12590
-81
lines changed
 

‎deploy.sh

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/usr/bin/env sh
2+
3+
# abort on errors
4+
set -e
5+
6+
# build
7+
npm run docs:build
8+
9+
# navigate into the build output directory
10+
cd docs/.vuepress/dist
11+
12+
# if you are deploying to a custom domain
13+
# echo 'www.example.com' > CNAME
14+
15+
git init
16+
git add -A
17+
git commit -m 'deploy'
18+
19+
# if you are deploying to https://<USERNAME>.github.io
20+
# git push -f git@github.com:<USERNAME>/<USERNAME>.github.io.git master
21+
22+
# if you are deploying to https://<USERNAME>.github.io/<REPO>
23+
git push -f git@github.com:Masth0/ScratchCard.git master:gh-pages
24+
25+
cd -

‎docs/.nojekyll

Whitespace-only changes.

0 commit comments

Comments
 (0)
Failed to load comments.