Skip to content

Commit e358a18

Browse files
committed
Deploy to GitHub Pages
1 parent ea99adb commit e358a18

10 files changed

+387
-1
lines changed

.nojekyll

Whitespace-only changes.

app.js

+64
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

glyphicons-halflings-regular.eot

19.7 KB
Binary file not shown.

glyphicons-halflings-regular.svg

+288
Loading

glyphicons-halflings-regular.ttf

44.3 KB
Binary file not shown.

glyphicons-halflings-regular.woff

22.9 KB
Binary file not shown.

glyphicons-halflings-regular.woff2

17.6 KB
Binary file not shown.

index.html

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TXT6313TGG"></script>
5+
<script>
6+
window.dataLayer = window.dataLayer || [];
7+
function gtag(){dataLayer.push(arguments);}
8+
gtag('js', new Date());
9+
10+
gtag('config', 'G-TXT6313TGG');
11+
</script>
12+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
13+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
14+
<title>Solution visualization</title>
15+
<meta name="author" content="David Kobalia">
16+
<meta name="title" content="Solution visualization" />
17+
<link href='//fonts.googleapis.com/css?family=PT+Sans|Roboto' rel='stylesheet' type='text/css'>
18+
<link rel="stylesheet" href="styles.css" type="text/css" media="screen" charset="utf-8">
19+
<meta property="og:image" content="http://raw.githubusercontent.com/blocage/leetcode-algorithms/main/.github/images/nuget_fly_first.png" />
20+
<meta property="og:image:secure_url" content="https://raw.githubusercontent.com/blocage/leetcode-algorithms/main/.github/images/nuget_fly_first.png" />
21+
<meta property="og:image:width" content="300px" />
22+
<meta property="og:image:height" content="187px" />
23+
</head>
24+
<body>
25+
<div id=app></div>
26+
<script src="app.js"></script>
27+
</body>
28+
</html>

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1",
88
"build": "mkdir -p ./build && cp ./src/index.html ./build/ && webpack -p --config webpack.production.config.js",
9-
"start": "PORT=8081 node dev-server.js"
9+
"start": "PORT=8081 node dev-server.js",
10+
"deploy": "npm run build && cp -r build/* . && touch .nojekyll && git add . && git commit -m 'Deploy to GitHub Pages' && git push origin HEAD:gh-pages"
1011
},
1112
"author": "David Kobalia",
1213
"license": "MIT",

styles.css

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)