Skip to content

Commit 587ea09

Browse files
committed
Adds a server, and deploys to staging
1 parent af08438 commit 587ea09

File tree

7 files changed

+170
-0
lines changed

7 files changed

+170
-0
lines changed

.github/workflows/DeployStaging.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Build Website To Staging
2+
3+
on:
4+
push:
5+
branches: [v2]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
# Check out, and set up the node/ruby infra
13+
- uses: actions/checkout@v1
14+
- uses: actions/setup-node@v1
15+
with:
16+
node-version: '13.x'
17+
18+
# Build v2
19+
- name: Build website v2
20+
run: |
21+
yarn install
22+
yarn bootstrap
23+
yarn build
24+
yarn build-site
25+
26+
# Move the files to the new app
27+
- run: rm -rf serve/public
28+
- name: Move V2 public to serve dir
29+
run: cp packages/typescriptlang-org/public serve
30+
31+
- name: Build serve server
32+
run: |
33+
cd serve
34+
npm i
35+
36+
# Deploy _just_ the serve server
37+
- uses: azure/webapps-deploy@v1
38+
with:
39+
creds: ${{ secrets.AZURE_STAGING_PUBLISHING_PROFILE }}

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,8 @@
4040
"semi": false,
4141
"singleQuote": true,
4242
"trailingComma": "es5"
43+
},
44+
"dependencies": {
45+
"serve-handler": "^6.1.2"
4346
}
4447
}

serve/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Azure App
2+
3+
For an App Service App we need an app to host our static content.
4+
5+
Here is one, it doesn't do much but hosts files inside the public directory.

serve/index.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
const handler = require('serve-handler')
2+
const http = require('http')
3+
4+
const server = http.createServer((request, response) => {
5+
// You pass two more arguments for config and middleware
6+
// More details here: https://github.com/zeit/serve-handler#options
7+
return handler(request, response, { public: 'public' })
8+
})
9+
10+
const port = process.env.PORT || 3000
11+
server.listen(port, () => {
12+
console.log('Running at http://localhost:' + port)
13+
})

serve/package-lock.json

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

serve/package.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"scripts": {
3+
"start": "node index.js"
4+
},
5+
"dependencies": {
6+
"serve-handler": "^6.1.2"
7+
}
8+
}

serve/public/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<html>
2+
<p>This is a blank file which is overwritten during a deploy</p>
3+
</html>

0 commit comments

Comments
 (0)