Merge branch 'master' of github.com:tparnell8/Resume
This commit is contained in:
15
circle.yml
15
circle.yml
@@ -1,15 +0,0 @@
|
||||
general:
|
||||
branches:
|
||||
ignore:
|
||||
- gh-pages # list of branches to ignore
|
||||
deployment:
|
||||
production:
|
||||
branch: master
|
||||
commands:
|
||||
- sh ./deploy.sh
|
||||
test:
|
||||
override:
|
||||
- node ./node_modules/resume-cli/index.js export index -f html --theme elegant
|
||||
dependencies:
|
||||
cache_directories:
|
||||
- "node_modules" # relative to the build directory
|
||||
@@ -57,7 +57,7 @@ echo Building Resume
|
||||
call :Executecmd npm install
|
||||
IF !ERRORLEVEL! NEQ 0 goto error
|
||||
REM This creates the **index.html** which is deployed by Azure Websites.
|
||||
call :Executecmd node .\node_modules\resume-cli\index.js export index -f html --theme elegant
|
||||
REM call :Executecmd node .\node_modules\resume-cli\index.js export index -f html --theme elegant
|
||||
IF !ERRORLEVEL! NEQ 0 goto error
|
||||
|
||||
:: 1. KuduSync
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
#!/bin/bash
|
||||
git config user.email "tparnell8@gmail.com"
|
||||
git config user.name "Tommy Parnell"
|
||||
git add .
|
||||
git commit -m "Deployed to Github Pages"
|
||||
git push --force "git@github.com:tparnell8/Resume.git" master:gh-pages
|
||||
923
index.html
923
index.html
File diff suppressed because one or more lines are too long
@@ -11,6 +11,6 @@
|
||||
"test": "node ./node_modules/resume-cli/index.js export index -f html"
|
||||
},
|
||||
"dependencies": {
|
||||
"resume-cli": "0.4.8"
|
||||
"resume-cli": "^0.4.13"
|
||||
}
|
||||
}
|
||||
|
||||
45
web.config
Normal file
45
web.config
Normal file
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This configuration file is required if iisnode is used to run node processes behind
|
||||
IIS or IIS Express. For more information, visit:
|
||||
|
||||
https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config
|
||||
-->
|
||||
|
||||
<configuration>
|
||||
<system.webServer>
|
||||
<!-- Visit http://blogs.msdn.com/b/windowsazure/archive/2013/11/14/introduction-to-websockets-on-windows-azure-web-sites.aspx for more information on WebSocket support -->
|
||||
<webSocket enabled="false" />
|
||||
<!-- 'bin' directory has no special meaning in node.js and apps can be placed in it -->
|
||||
<security>
|
||||
<requestFiltering>
|
||||
<hiddenSegments>
|
||||
<remove segment="bin"/>
|
||||
</hiddenSegments>
|
||||
</requestFiltering>
|
||||
</security>
|
||||
|
||||
<!-- Make sure error responses are left untouched -->
|
||||
<httpErrors existingResponse="PassThrough" />
|
||||
|
||||
<staticContent>
|
||||
<mimeMap fileExtension=".mp4" mimeType="video/mp4" />
|
||||
<mimeMap fileExtension=".m4v" mimeType="video/m4v" />
|
||||
<mimeMap fileExtension=".ogg" mimeType="video/ogg" />
|
||||
<mimeMap fileExtension=".ogv" mimeType="video/ogg" />
|
||||
<mimeMap fileExtension=".webm" mimeType="video/webm" />
|
||||
<mimeMap fileExtension=".oga" mimeType="audio/ogg" />
|
||||
<mimeMap fileExtension=".spx" mimeType="audio/ogg" />
|
||||
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
|
||||
<mimeMap fileExtension=".svgz" mimeType="image/svg+xml" />
|
||||
<remove fileExtension=".eot" />
|
||||
<mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
|
||||
<mimeMap fileExtension=".otf" mimeType="font/otf" />
|
||||
<mimeMap fileExtension=".woff" mimeType="font/x-woff" />
|
||||
<mimeMap fileExtension=".woff2" mimeType="font/x-woff" />
|
||||
<remove fileExtension=".json" />
|
||||
<mimeMap fileExtension=".json" mimeType="application/json" />
|
||||
</staticContent>
|
||||
<urlCompression doStaticCompression="true" doDynamicCompression="true" />
|
||||
</system.webServer>
|
||||
</configuration>
|
||||
Reference in New Issue
Block a user