-
Notifications
You must be signed in to change notification settings - Fork 32
Update example05 #107
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
Merged
Merged
Update example05 #107
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
60fbe2d
Update example05
chadell 4b04776
Use site as children
chadell 5110a0d
Add update after adding children
chadell 9a5ae11
Add pylint disable until Redis code is in
chadell 66e8af0
Update example
chadell 30c4998
simplify
chadell 210ddd8
wip
chadell e2b3732
wip
chadell 6b06281
Update example
chadell 7554162
Take redis from main
chadell 5cd0503
Merge branch 'example05-update' of github.com:networktocode/diffsync …
chadell 4888266
imprort order
chadell a15d346
yml
chadell 614d1bd
update readme
chadell fb31505
Use diffsync from pypi
chadell 31869c4
Apply suggestions from code review
chadell e9f5f70
Merge remote-tracking branch 'origin/develop' into example05-update
chadell 8ebab53
Code review
chadell 3bd0f6f
replace bash by python exec
chadell 64cec66
Rename dockerfile to Dockerfile
glennmatthews fbf17a9
Merge branch 'develop' into example05-update
glennmatthews f3948ad
Update docs source
glennmatthews 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -289,3 +289,6 @@ fabric.properties | |
|
||
## Sphinx Documentation ## | ||
docs/build | ||
|
||
## Secrets | ||
creds.env |
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,7 @@ | ||
diffsync.store.local | ||
==================== | ||
|
||
.. automodule:: diffsync.store.local | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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,7 @@ | ||
diffsync.store.redis | ||
==================== | ||
|
||
.. automodule:: diffsync.store.redis | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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,14 @@ | ||
API Reference | ||
============= | ||
|
||
.. automodule:: diffsync.store | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
diffsync.store.local | ||
diffsync.store.redis |
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,14 @@ | ||
ARG PYTHON_VER=3.8.10 | ||
|
||
FROM python:${PYTHON_VER}-slim | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends git \ | ||
&& apt-get purge -y --auto-remove \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /local | ||
COPY . /local | ||
|
||
RUN pip install --upgrade pip \ | ||
&& pip install -r requirements.txt |
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
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.
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.
Just checking - should that last sentence be amended to indicate that that the datacenter would be a
Site
associated with the BarcelonaRegion
?