-
Notifications
You must be signed in to change notification settings - Fork 0
Feat/GitHub folder #3
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
Changes from 41 commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
1a23ef5
github workflow
MaxNumerique 2a34d8b
Apply prepare changes
MaxNumerique ef059ff
feat(folderPath): add github folder
MaxNumerique 36ad0a7
README, dependencies, pyproject
MaxNumerique e9c1d22
Apply prepare changes
MaxNumerique 8aa4748
gitgnore added
MaxNumerique d009dda
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique 8775ad2
app_config.py added
MaxNumerique 2883758
tests added
MaxNumerique 786c0ed
Apply prepare changes
MaxNumerique d5cdae4
simplified test, session context, dataabase initialization, conftest
MaxNumerique 9af0a58
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique 73d15d6
Apply prepare changes
MaxNumerique 3291458
removed unused import in test_connection.py
MaxNumerique fdc70aa
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique 21a2f54
refacto
MaxNumerique 05d6194
Apply prepare changes
MaxNumerique fefecf1
refacto
MaxNumerique 4655a9e
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique ae244be
Apply prepare changes
MaxNumerique 0b157bd
mypy
MaxNumerique f0be8be
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique 67f0661
Session import missing
MaxNumerique 6caeddb
scope_session
MaxNumerique 0c596a5
checkers
MaxNumerique 58488fc
temporary npm: faalse
MaxNumerique b647e1e
get_session type
MaxNumerique eccc976
checkers please
MaxNumerique 683fd6b
app_config not needed ?
MaxNumerique 3e46a2e
changed position of get_dataabase_connection to fit OGW-Back initial …
MaxNumerique 2afed63
Apply prepare changes
MaxNumerique 76e4527
moved get_database_connection after definition of get_database
MaxNumerique c97faa0
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique 5b1f7bc
Apply prepare changes
MaxNumerique 61b9df0
session.commit()
MaxNumerique 2d9b9eb
database
MaxNumerique 0838a10
delete build folder and add it to gitignore
MaxNumerique 98f4736
removed session.commit()
MaxNumerique b0a9154
imports
MaxNumerique 72ea391
py.typed
MaxNumerique d26b62e
[tool.setuptools.package-data]
MaxNumerique 89e62ad
rm app_context
MaxNumerique f4d664a
revert
MaxNumerique f86cfe3
removed connection alias
MaxNumerique e10e321
moved files into database folder
MaxNumerique 640bc7e
Update .github/workflows/deploy.yml
MaxNumerique 6b53bb9
Update pyproject.toml
MaxNumerique 101c8bf
freeze requirements
MaxNumerique 50d9bf5
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique f09c603
fix requirements
MaxNumerique 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 |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| name: Deploy | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| deploy: | ||
| uses: Geode-solutions/actions/.github/workflows/py-deploy.yml@master | ||
| with: | ||
| npm: true | ||
| secrets: inherit | ||
|
|
||
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,9 @@ | ||
| name: Merge request | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| release: | ||
| uses: Geode-solutions/actions/.github/workflows/py-merge-request.yml@master | ||
| secrets: inherit |
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 @@ | ||
| name: Pull request | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [opened, reopened] | ||
| branches: | ||
| - master | ||
|
|
||
| jobs: | ||
| update-branch: | ||
| uses: Geode-solutions/actions/.github/workflows/update-branch.yml@master |
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,9 @@ | ||
| name: Prepare deploy | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| prepare: | ||
| uses: Geode-solutions/actions/.github/workflows/py-prepare-deploy.yml@master | ||
| secrets: inherit |
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 @@ | ||
| name: Test | ||
|
|
||
| on: | ||
| push: | ||
| branches-ignore: | ||
| - master | ||
| - next | ||
|
|
||
| jobs: | ||
| test: | ||
| uses: Geode-solutions/actions/.github/workflows/py-test.yml@master | ||
| with: | ||
| npm: false | ||
| secrets: inherit |
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,12 @@ | ||
| name: Test PR | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [opened, synchronize, reopened, ready_for_review] | ||
|
|
||
| jobs: | ||
| test: | ||
| uses: Geode-solutions/actions/.github/workflows/py-test-pr.yml@master | ||
| with: | ||
| npm: false | ||
| secrets: inherit |
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,8 @@ | ||
| .pytest_cache | ||
| *.egg-info | ||
| venv | ||
| __pycache__ | ||
| node_modules | ||
| .mypy_cache | ||
| *.db | ||
| /build |
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.