Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Deploy example to Heroku #134

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: npm start --prefix example
10 changes: 10 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "graphql-voyager-example",
"description": "GraphQL introspection viewer example",
"website": "https://github.com/APIs-guru/graphql-voyager.git",
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}
8 changes: 7 additions & 1 deletion example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Example GraphQL-Voyager Install
========================

------
**Attribution:** the contents of this folder was copied from [GraphiQL](https://github.com/graphql/graphiql/tree/master/example) example and modified for GraphQL-Voyager example. See copyright below:
**Attribution:** The contents of this folder were copied from [GraphiQL](https://github.com/graphql/graphiql/tree/master/example) example and modified for GraphQL-Voyager example. See copyright below:

> Copyright (c) Facebook, Inc. All rights reserved. [LICENSE](https://github.com/graphql/graphiql/blob/master/LICENSE)

Expand All @@ -13,8 +13,14 @@ than depending on npm, so that it is easier to test new changes. In order to use
the compiled version of GraphQL-Voyager, first run in the parent directory before
installing and starting the example.

## Running Locally

1. Run `npm install && npm run build:release` in the parent directory
2. Navigate to this directory (example) in Terminal
3. `npm install`
4. `npm start`
5. Open your browser to the address listed in your console. e.g. `Started on http://localhost:49811/`

## Running on Cloud

[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/bdcorps/graphql-voyager/tree/9-deploy-to-heroku)
6 changes: 4 additions & 2 deletions example/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ const graphqlHTTP = require('express-graphql');

const schema = require('./schema');

var port = process.env.PORT || process.env.VCAP_APP_PORT || 3005;

const app = express();
app.use(express.static(__dirname));
app.use('/graphql', graphqlHTTP(() => ({ schema })));

app.listen(0, function() {
const port = this.address().port;

app.listen(port, function() {
console.log(`Started on http://localhost:${port}/`);
});
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"deploy": "deploy-to-gh-pages --local --update demo-dist",
"stats": "NODE_ENV=production webpack --json --mode=production --config build/webpack.js > stats.json",
"prettier": "prettier --write \"{,!(node_modules)/**/}*.{ts,tsx}\"",
"declarations": "tsc --emitDeclarationOnly -p tsconfig.lib.json"
"declarations": "tsc --emitDeclarationOnly -p tsconfig.lib.json",
"postinstall": "cd example && npm install"
},
"license": "MIT",
"devDependencies": {
Expand Down