Skip to content

Commit b09645d

Browse files
authored
Merge pull request #141 from github/graphql-enterprise
Adding resources for getting started with GraphiQL on Enterprise
2 parents c7ea108 + 1f70cd6 commit b09645d

File tree

12 files changed

+2510
-0
lines changed

12 files changed

+2510
-0
lines changed

graphql/enterprise/.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
11+
12+
# misc
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*

graphql/enterprise/.nojekyll

Whitespace-only changes.

graphql/enterprise/README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Running GraphiQL on Enterprise
2+
3+
The GraphiQL Editor hosted on https://developer.github.com/v4/explorer/ is tied to your GitHub.com account, so in order to use this IDE with GitHub Enterprise, you'll need your own copy of GraphiQL that has access to your instance. There are a couple of options available, depending on your preference:
4+
5+
### MacOS App
6+
Download the [GraphiQL App](https://github.com/skevy/graphiql-app) and you'll be able to specify the endpoint of your GitHub Enterprise instance.
7+
8+
You can download a binary directly from the [releases](https://github.com/skevy/graphiql-app/releases) tab, but there's also a Cask for use with Homebrew which will download and install the latest release:
9+
`brew cask install graphiql`
10+
11+
### Browser Client
12+
GraphiQL is also available as an NPM module that can be deployed to the browser. This folder includes an adaptation of the official [GraphQL NodeJS example](https://github.com/graphql/graphiql/tree/master/example) designed to be deployed to Pages on GitHub Enterprise.
13+
14+
#### On-prem Considerations
15+
As GitHub Enterprise is designed to run "behind your firewall" and is sometimes deployed in environments without direct internet access, this repo is setup to host the React and GraphiQL dependencies locally.
16+
17+
By default, this example will query against the GitHub Enterprise appliance it's hosted on. For instance, if the repo is located at `https://example.com/<username>/graphiql-pages`, the IDE will query the GraphQL API located at `https://example.com/api/graphql`. This will work whether or not subdomain isolation is enabled.
18+
19+
20+
#### Setup
21+
The example in this folder contains all source files necessary to get GraphiQL working with Pages on GitHub Enterprise. Copy the `graphql/enterprise` directory from this repository into a new repository on your Enterprise server, then [configure GitHub Pages to publish the master branch](https://help.github.com/enterprise/user/articles/configuring-a-publishing-source-for-github-pages/). A URL will be created for you automatically.
22+
23+
#### Development
24+
There is a basic build script included that will copy the minified react and graphiql dependencies into the `dist/` folder. For further development, you can use `npm` or `yarn` to work with the original source libraries.
25+
26+
**NPM**
27+
```shell
28+
// Install full dependencies
29+
$ npm install
30+
// Copy the minified React, GraphiQL and Primer-CSS modules into the `dist/` folder
31+
$ npm run build
32+
33+
```
34+
**Yarn**
35+
```shell
36+
// Install dependencies
37+
$ yarn
38+
// Copy the minified React, GraphiQL and Primer-CSS modules into the `dist/` folder
39+
$ yarn build
40+
```
41+
42+
### Authentication
43+
In both cases, you'll need to [create a personal access token](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/) with the appropriate scopes to the data you want to query.

0 commit comments

Comments
 (0)