-
Notifications
You must be signed in to change notification settings - Fork 2
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
Corrections_NormaW_LeonH_PullReq_001 #43
Open
leonhummernbrum
wants to merge
15
commits into
master
Choose a base branch
from
Corrections_NormaW_LeonH
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
c764a16
test for changes by normaW and leonH
leonhummernbrum d737d35
undone
leonhummernbrum 090a9dd
npm link
NormaW f015a66
added "Yarn" as requirement
leonhummernbrum 9286115
added "in your project directory" at editing env vars
leonhummernbrum 4de1b1b
Update setup_root.md
leonhummernbrum ec116a6
Update setup_root.md
leonhummernbrum 820e046
check logs
NormaW d57838c
Merge branch 'master' into Corrections_NormaW_LeonH
ba3b237
Keycloak link with /auth
NormaW 6685f81
Update README.md
leonhummernbrum f54f562
Update README.md
leonhummernbrum 7aba1a8
Update quickstart.md
leonhummernbrum 818d038
Update setup_root.md
leonhummernbrum b3be10d
Update quickstart.md
leonhummernbrum File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -10,6 +10,9 @@ If you want to know more about Zendro or a detailed explanation on how to set up | |
|
||
## Project Requirements: | ||
* [NodeJS](https://nodejs.org/en/) version 14+ is required. | ||
* [Yarn](https://classic.yarnpkg.com/lang/en/docs/install/#debian-stable) | ||
|
||
**recommended for setting up zendro using docker** | ||
* [docker](https://docs.docker.com/get-docker/) | ||
* [docker-compose](https://docs.docker.com/compose/install/#install-compose) | ||
<br/><br/> | ||
|
@@ -23,7 +26,7 @@ Execute this commands to install Zendro: | |
$ git clone https://github.com/Zendro-dev/zendro.git | ||
$ cd zendro | ||
$ npm install | ||
$ npm link | ||
$ npm link #sudo npm link? | ||
``` | ||
|
||
### Step 2: Setup a new Zendro project | ||
|
@@ -55,7 +58,7 @@ If you want to know more about the enviroment variables, you can check [this](en | |
|
||
#### Development mode | ||
|
||
To start Zendro in development mode run | ||
To start Zendro in development mode, run the following command from within your project directory: | ||
|
||
``` | ||
$ zendro dockerize -u | ||
|
@@ -68,7 +71,7 @@ In development mode there is no reverse proxy to map the docker-services. Instea | |
**Note**: We recommend to use Linux system for development mode. | ||
|
||
#### Production mode | ||
Execute this command to start Zendro in production mode. | ||
Execute this command from within your project directory to start Zendro in production mode: | ||
|
||
``` | ||
$ zendro dockerize -u -p | ||
|
@@ -88,7 +91,7 @@ $ docker ps | |
|
||
You can check docker logs by: | ||
``` | ||
$ docker logs -f <container name> | ||
$ docker logs -f <container name> #for us the container id worked, the name did not | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove comment |
||
``` | ||
|
||
> ***Please wait until logs indicate the app is running on XXXX port to access Zendro services.*** | ||
|
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 |
---|---|---|
|
@@ -10,6 +10,7 @@ Zendro consists of four source-code projects: __graphql-server-model-codegen__, | |
|
||
## Project Requirements: | ||
* [NodeJS](https://nodejs.org/en/) version 14+ is required. | ||
* [Yarn](https://classic.yarnpkg.com/lang/en/docs/install/#debian-stable) | ||
|
||
**recommended for setting up zendro using docker** | ||
* [docker](https://docs.docker.com/get-docker/) | ||
|
@@ -41,12 +42,12 @@ $ zendro new -d <my-project-name> | |
|
||
<!----><a name="envvars"></a> | ||
|
||
### Step 3: Edit environment variables | ||
### Step 3: Edit environment variables in your project directory | ||
|
||
Go inside the new project and modify the selected enviroment variables in the next files. These files have a default configuration, please remember to add your expected secret word in the *NEXTAUTH_SECRET* variable. | ||
Go inside the new project and modify the selected enviroment variables in the next files. These files have a default configuration, please remember to add your expected secret word in the preexisting *NEXTAUTH_SECRET* variable. | ||
|
||
* **Without docker setup:** ./graphql-server/config/data_models_storage_config.json | ||
* **With docker setup:** ./config/data_models_storage_config.json | ||
* **Without docker setup:** ./graphql-server/config/data_models_storage_config.json (specify data model here) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. data model -> data models |
||
* **With docker setup:** ./config/data_models_storage_config.json (specify data model here) | ||
* **SPA in development mode:** ./single-page-app/.env.development | ||
* **SPA in production mode:** ./single-page-app/.env.production | ||
* **GraphiQL in development mode:** ./graphiql-auth/.env.development | ||
|
@@ -92,7 +93,7 @@ In this file you can define any number of database connections, that zendro shou | |
|
||
The recommend way to [run your Zendro instance is via docker](https://zendro-dev.github.io/zendro_cli.html#dockerize-zendro-app-with-example-docker-files). This ensures that regardless of your local infrastructure Zendro will behave the same. | ||
|
||
Execute this command to start Zendro in production mode or without `-p` to start in development mode. | ||
Execute this command to start Zendro in production mode or without `-p` to start in development mode, each from within your project directory. | ||
|
||
``` | ||
$ zendro dockerize -u -p | ||
|
@@ -120,7 +121,7 @@ $ docker logs -f <container name> | |
In default config, the running containers will be: | ||
|
||
* Keycloak: | ||
* http://localhost:8081 | ||
* http://localhost:8081/auth | ||
|
||
* The default keycloak username is *admin* and the password is *admin*. | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove comment.