-
Notifications
You must be signed in to change notification settings - Fork 20
Documentation Update for the windows environment #492
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
Open
NethmikaKekuu
wants to merge
8
commits into
LDFLK:main
Choose a base branch
from
NethmikaKekuu:windows-docs
base: main
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
8 commits
Select commit
Hold shift + click to select a range
52516c1
docs: Added data ingestion instructions for the installation guide
NethmikaKekuu 1b1c3bd
docs: Added powershell script for core-api and updated readme
NethmikaKekuu b7bd430
docs: added powershell scripts for ingestion and read api
NethmikaKekuu 36085fe
docs: Added docs to start locally
NethmikaKekuu 7d14694
docs: Added windows instructions for ingestion-api docs
NethmikaKekuu 3ff486b
docs: removed specific data from a generic document
NethmikaKekuu cb4c160
docs: genralized the ingestion and read readmes
NethmikaKekuu 5729c4a
fix: resolved bot comments
NethmikaKekuu 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| $env:MONGO_URI="" | ||
| $env:MONGO_DB_NAME="" | ||
| $env:MONGO_COLLECTION="" | ||
|
|
||
| ## Uncomment the following for development | ||
|
|
||
| # $env:NEO4J_URI=$env:NEO4J_DEVELOPMENT_DB_URI | ||
| # $env:NEO4J_USER=$env:NEO4J_DEVELOPMENT_USERNAME | ||
| # $env:NEO4J_PASSWORD=$env:NEO4J_DEVELOPMENT_PASSWORD | ||
|
|
||
| ## If commented, uncomment the following will be used for testing | ||
|
|
||
| # $env:NEO4J_URI=$env:NEO4J_TESTING_DB_URI | ||
| # $env:NEO4J_USER=$env:NEO4J_TESTING_USERNAME | ||
| # $env:NEO4J_PASSWORD=$env:NEO4J_TESTING_PASSWORD | ||
|
|
||
| ## PostgreSQL configuration | ||
|
|
||
| $env:POSTGRES_HOST="localhost" | ||
| $env:POSTGRES_PORT="5432" | ||
| $env:POSTGRES_USER="postgres" | ||
| $env:POSTGRES_PASSWORD="postgres" | ||
| $env:POSTGRES_DB="opengin" | ||
| $env:POSTGRES_SSL_MODE="disable" | ||
| $env:POSTGRES_TEST_DB_URI="postgresql://postgres:postgres@localhost:5432/opengin?sslmode=disable" | ||
|
|
||
| $env:CORE_SERVICE_HOST="localhost" | ||
| $env:CORE_SERVICE_PORT="50051" |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # config format 1 (default for development) | ||
| $env:CORE_SERVICE_HOST="0.0.0.0" | ||
| $env:CORE_SERVICE_PORT="50051" | ||
| $env:INGESTION_SERVICE_HOST="0.0.0.0" | ||
| $env:INGESTION_SERVICE_PORT="8080" | ||
| $env:CORE_SERVICE_URL="http://localhost:50051" | ||
|
|
||
| # config format 2 (default for deployment) | ||
|
|
||
| $env:CORE_SERVICE_URL="http://0.0.0.0:50051" | ||
| $env:INGESTION_SERVICE_URL="http://0.0.0.0:8080" | ||
|
NethmikaKekuu marked this conversation as resolved.
|
||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.