You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains some content and the code to build [operate-first.cloud](https://www.operate-first.cloud/). It is based on [Gatsby](https://www.gatsbyjs.com/) and can be deployed to [OpenShift](scripts/templates/base) or [GitHub Pages](https://pages.github.com/).
@@ -40,6 +41,7 @@ For example, to add content locally to the `blueprints` category, create a docum
@@ -75,7 +77,6 @@ Similar to Markdown, but you can add [React Components](https://www.gatsbyjs.com
75
77
76
78
See [/content/examples/mdx.mdx](/content/examples/mdx.mdx) rendered [here](https://www.operate-first.cloud/examples/mdx.mdx)
77
79
78
-
79
80
```markdown
80
81
---
81
82
title: My MDX
@@ -105,7 +106,6 @@ Content will be added to one of the four categories on this website:
105
106
***operations**: Documentation pertaining to Operate First operation procedures.
106
107
***blueprints**: Generic information that can be applied to other projects as well.
107
108
108
-
109
109
#### Configuring Table of Contents
110
110
111
111
Whether adding content remotely, or locally, the content needs to be added to the vertical navigation bar on the left and will belong to one of the four categories.
@@ -128,118 +128,31 @@ Following is an example of 2 level hierarchy from a repo, for cases where you ha
You can run the app locally to preview your changes.
135
134
In terminal:
136
135
137
-
```shell script
138
-
make dev
136
+
```sh
137
+
npm install
138
+
npm run dev
139
139
```
140
140
141
-
If you have problems, run `make dev-clean`
142
-
143
-
### Previewing your changes on GitHub pages
144
-
145
-
When previewing your changes on a fork.
146
-
147
-
First, enable github pages to use the gh-pages branch from root.
148
-
149
-

150
-
151
-
Make sure to push your changes to your branch on the fork.
152
-
153
-
Then, from your branch manually build and push.
141
+
In case of stale cache or errors, please try:
154
142
155
-
```shell script
156
-
make gh-pages-fork
143
+
```sh
144
+
npm run clean
157
145
```
158
146
159
-
Now you can view your work on `https://githubuserid.github.io/operate-first.github.io`
160
-
161
-
### Previewing multiple PRs on GitHub pages
162
-
163
-
If you've set up to preview the site on your personal GitHub pages, like the above, you can also preview multiple PR branches from your fork under separate paths. For example, for a branch named `my-branch`, would deploy under a subpath of the same name.
164
-
165
-
From your branch manually build and push.
166
-
167
-
```shell script
168
-
make gh-pages-branch
169
-
```
147
+
### Previewing your changes on GitHub pages
170
148
171
-
Now you can view your work on `https://githubuserid.github.io/operate-first.github.io/my-branch`
149
+
We use Netlify to preview PR changes. Each PR will show a Netlify check that can be used to access a dynamically generated build and deployment of that PR.
172
150
173
151
### Manual Site Deployment (Production GitHub Pages)
174
152
175
153
[CI](https://travis-ci.org/github/operate-first/operate-first.github.io) should deploy to GitHub pages automatically, but to manually redeploy
176
154
177
-
```shell script
178
-
make gh-pages
179
-
```
180
-
181
-
## Building the site in a container
182
-
183
-
Customize your `.env` file similar to `.env.default`(.env.default)
184
-
185
-
#### Building a containerized image
186
-
187
-
Customize `.env` file to image and source information as desired. `npm` and the `s2i` command line tool is required. [https://github.com/openshift/source-to-image](https://github.com/openshift/source-to-image)
Customize `.env` file for deployment information. Required. `oc` command line tool is required.
215
-
216
-
```.env
217
-
OC_URL=https://api.my-host:6443
218
-
OC_PROJECT=operate-first
219
-
# user and password login
220
-
OC_USER=kubeadmin
221
-
OC_PASSWORD=my_password
222
-
```
223
-
224
-
or
225
-
226
-
```.env
227
-
OC_URL=https://api.my-host:6443
228
-
OC_PROJECT=operate-first
229
-
# token login
230
-
OC_TOKEN=my_token
231
-
```
232
-
233
-
Modify the image repository in the deployment config `deployment.yaml` present in `scripts/templates/base` to fetch the latest image from the location you pushed the container image to in the previous step.
234
-
235
-
Modify the following line to reflect the image repository you pushed it to.
0 commit comments