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
Copy file name to clipboardExpand all lines: README.md
+3-11Lines changed: 3 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,26 +12,18 @@ use GitHub pull requests for this purpose. Consult
12
12
[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
13
13
information on using pull requests.
14
14
15
-
## Updating a single page
16
-
17
-
If you've just spotted something you'd like to change while using the docs, Docsy has a shortcut for you:
18
-
19
-
1. Click **Edit this page** in the top right hand corner of the page.
20
-
1. If you don't already have an up to date fork of the project repo, you are prompted to get one - click **Fork this repository and propose changes** or **Update your Fork** to get an up to date version of the project to edit. The appropriate page in your fork is displayed in edit mode.
21
-
1. Follow the rest of the [Quick start with Netlify](#quick-start-with-netlify) process above to make, preview, and propose your changes.
22
-
23
-
## Previewing your changes locally
15
+
## Proposing & previewing your changes locally
24
16
25
17
If you want to run your own local Hugo server to preview your changes as you work:
26
18
27
19
1. Follow the instructions in [Getting started](/docs/getting-started) to install Hugo and any other tools you need. You'll need at least **Hugo version 0.45** (we recommend using the most recent available version), and it must be the **extended** version, which supports SCSS.
28
20
1. Fork the [Website repo](https://github.com/BeamStackProj/website) repo into your own project, then create a local copy using `git clone`. Don’t forget to use `--recurse-submodules` or you won’t pull down some of the code you need to generate a working site.
1. Run `hugo server` in the site root directory. By default your site will be available at http://localhost:1313/. Now that you're serving your site locally, Hugo will watch for changes to the content and automatically refresh your site.
26
+
1. Run `hugo server` in the site root directory. By default your site will be available at http://localhost:1313/website. Now that you're serving your site locally, Hugo will watch for changes to the content and automatically refresh your site.
35
27
1. Continue with the usual GitHub workflow to edit files, commit them, push the
36
28
changes up to your fork, and create a pull request.
Copy file name to clipboardExpand all lines: content/en/docs/about/contribution-guidelines.md
+6-35Lines changed: 6 additions & 35 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ weight: 20
6
6
7
7
We use [Hugo](https://gohugo.io/) to format and generate our website, the
8
8
[Docsy](https://github.com/google/docsy) theme for styling and site structure,
9
-
and [Netlify](https://www.netlify.com/) to manage the deployment of the site.
9
+
and [Github Actions](https://docs.github.com/en/actions) to manage the deployment of the site.
10
10
Hugo is an open-source static site generator that provides us with templates,
11
11
content organisation in a standard directory structure, and a website generation
12
12
engine. You write the pages in Markdown (or HTML if you want), and Hugo wraps them up into a website.
@@ -16,53 +16,24 @@ use GitHub pull requests for this purpose. Consult
16
16
[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
17
17
information on using pull requests.
18
18
19
-
## Quick start with Netlify
20
-
21
-
Here's a quick guide to updating the docs. It assumes you're familiar with the
22
-
GitHub workflow and you're happy to use the automated preview of your doc
23
-
updates:
24
-
25
-
1. Fork the [Beamstack repo](https://github.com/google/docsy-example) on GitHub.
26
-
1. Make your changes and send a pull request (PR).
27
-
1. If you're not yet ready for a review, add "WIP" to the PR name to indicate
28
-
it's a work in progress. (**Don't** add the Hugo property
29
-
"draft = true" to the page front matter, because that prevents the
30
-
auto-deployment of the content preview described in the next point.)
31
-
1. Wait for the automated PR workflow to do some checks. When it's ready,
32
-
you should see a comment like this: **deploy/netlify — Deploy preview ready!**
33
-
1. Click **Details** to the right of "Deploy preview ready" to see a preview
34
-
of your updates.
35
-
1. Continue updating your doc and pushing your changes until you're happy with
36
-
the content.
37
-
1. When you're ready for a review, add a comment to the PR, and remove any
38
-
"WIP" markers.
39
-
40
-
## Updating a single page
41
-
42
-
If you've just spotted something you'd like to change while using the docs, Docsy has a shortcut for you:
43
-
44
-
1. Click **Edit this page** in the top right hand corner of the page.
45
-
1. If you don't already have an up to date fork of the project repo, you are prompted to get one - click **Fork this repository and propose changes** or **Update your Fork** to get an up to date version of the project to edit. The appropriate page in your fork is displayed in edit mode.
46
-
1. Follow the rest of the [Quick start with Netlify](#quick-start-with-netlify) process above to make, preview, and propose your changes.
47
-
48
-
## Previewing your changes locally
19
+
## Proposing & previewing your changes locally
49
20
50
21
If you want to run your own local Hugo server to preview your changes as you work:
51
22
52
23
1. Follow the instructions in [Getting started](/docs/getting-started) to install Hugo and any other tools you need. You'll need at least **Hugo version 0.45** (we recommend using the most recent available version), and it must be the **extended** version, which supports SCSS.
53
-
1. Fork the [Beamstack repo](https://github.com/google/docsy-example) repo into your own project, then create a local copy using `git clone`. Don’t forget to use `--recurse-submodules` or you won’t pull down some of the code you need to generate a working site.
24
+
1. Fork the [Website repo](https://github.com/BeamStackProj/website) repo into your own project, then create a local copy using `git clone`. Don’t forget to use `--recurse-submodules` or you won’t pull down some of the code you need to generate a working site.
1. Run `hugo server` in the site root directory. By default your site will be available at http://localhost:1313/. Now that you're serving your site locally, Hugo will watch for changes to the content and automatically refresh your site.
30
+
1. Run `hugo server` in the site root directory. By default your site will be available at http://localhost:1313/website. Now that you're serving your site locally, Hugo will watch for changes to the content and automatically refresh your site.
60
31
1. Continue with the usual GitHub workflow to edit files, commit them, push the
61
32
changes up to your fork, and create a pull request.
62
33
63
34
## Creating an issue
64
35
65
-
If you've found a problem in the docs, but you're not sure how to fix it yourself, please create an issue in the [Beamstack repo](https://github.com/google/docsy-example/issues). You can also create an issue about a specific page by clicking the **Create Issue** button in the top right hand corner of the page.
36
+
If you've found a problem in the docs, but you're not sure how to fix it yourself, please create an issue in the [Website repo](https://github.com/BeamStackProj/website/issues). You can also create an issue about a specific page by clicking the **Create Issue** button in the top right hand corner of the page.
Copy file name to clipboardExpand all lines: content/en/docs/getting-started/introduction.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Deploying machine learning and GenAI workflows should be easy. By extension, man
31
31
32
32
## The Beamstack mission
33
33
34
-
Our goal is to make the deployment of AI/ML Pipelines effortless and time efficienct. Beamstack extends already existing features of kubernetes:
34
+
Our goal is to make the deployment of AI/ML Pipelines effortless and time efficient. Beamstack extends already existing features of kubernetes:
35
35
36
36
- Easy, repeatable, portable deployments on a diverse infrastructure
37
37
(for example, experimenting on a laptop, then moving to an on-premises
@@ -53,5 +53,5 @@ There are many ways to contribute to Beamstack, and we welcome contributions!
53
53
Read the [contributor's guide](/docs/about/contributing/) to get started on the code, and learn about the community on the [community page](/docs/about/community/).
54
54
55
55
## Next Steps
56
-
56
+
- Explore the [architecture of Beamstack](/docs/getting-started/architecture).
57
57
- Follow [the installation guide](/docs/getting-started/installing-beamstack) install Beamstack and begin easy pipeline deployments.
0 commit comments