-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
(cherry picked from commit de7356b) Co-authored-by: Karl Cardenas <[email protected]>
- Loading branch information
1 parent
8645ddc
commit ec89859
Showing
5 changed files
with
19 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ README.md | |
CHANGES | ||
.gitignore | ||
.cache | ||
prow/ | ||
prow/ | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,11 +62,6 @@ jobs: | |
run: | | ||
netlify build --context deploy-preview | ||
- name: compile | ||
run: | | ||
make build | ||
- name: Deploy to Netlify | ||
id: netlify | ||
uses: nwtgck/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,12 @@ To contribute, we recommend having the following software installed locally on y | |
|
||
To get started with the Docker based local development approach ensure you are in the root context of this repository. | ||
|
||
Initailize the repository by issuing the following command: | ||
|
||
```shell | ||
make init | ||
``` | ||
|
||
Next, issue the following command to build the Docker image. | ||
|
||
**Note**: The first time issuing the command may take several minutes. | ||
|
@@ -35,15 +41,13 @@ make docker-image | |
|
||
To start the Dockererized local development server, issue the command: | ||
|
||
``` | ||
```shell | ||
make docker-start | ||
``` | ||
|
||
The local development server is ready when the following output is displayed in your terminal. | ||
|
||
```shell | ||
npm run start | ||
|
||
> [email protected] start | ||
> docusaurus start --host 0.0.0.0 --port 9000 | ||
|
||
|
@@ -62,12 +66,6 @@ To exit from the local development Docker container. Press `Ctrl + Z`. | |
|
||
## Local Development Setup (Non-Docker) | ||
|
||
Make a folder somewhere you can easily find | ||
|
||
```sh | ||
mkdir ~/Work | ||
``` | ||
|
||
Clone the repository and run the initialization script | ||
|
||
```sh | ||
|
@@ -77,6 +75,13 @@ cd librarium | |
make init | ||
``` | ||
|
||
Next, populate the `.env` file with the following content. The local development server will not start without the required environment variables. The values are not important for local development. | ||
|
||
```shell | ||
ALGOLIA_APP_ID=1234567890 | ||
ALGOLIA_SEARCH_KEY=1234567890 | ||
``` | ||
|
||
## Documentation Content | ||
|
||
Create a branch to keep track of all your changes. | ||
|