Skip to content
Merged
Show file tree
Hide file tree
Changes from 41 commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
1a23ef5
github workflow
MaxNumerique Sep 9, 2025
2a34d8b
Apply prepare changes
MaxNumerique Sep 9, 2025
ef059ff
feat(folderPath): add github folder
MaxNumerique Sep 9, 2025
36ad0a7
README, dependencies, pyproject
MaxNumerique Sep 9, 2025
e9c1d22
Apply prepare changes
MaxNumerique Sep 9, 2025
8aa4748
gitgnore added
MaxNumerique Sep 9, 2025
d009dda
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique Sep 9, 2025
8775ad2
app_config.py added
MaxNumerique Sep 10, 2025
2883758
tests added
MaxNumerique Sep 10, 2025
786c0ed
Apply prepare changes
MaxNumerique Sep 10, 2025
d5cdae4
simplified test, session context, dataabase initialization, conftest
MaxNumerique Sep 10, 2025
9af0a58
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique Sep 10, 2025
73d15d6
Apply prepare changes
MaxNumerique Sep 10, 2025
3291458
removed unused import in test_connection.py
MaxNumerique Sep 10, 2025
fdc70aa
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique Sep 10, 2025
21a2f54
refacto
MaxNumerique Sep 10, 2025
05d6194
Apply prepare changes
MaxNumerique Sep 10, 2025
fefecf1
refacto
MaxNumerique Sep 10, 2025
4655a9e
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique Sep 10, 2025
ae244be
Apply prepare changes
MaxNumerique Sep 10, 2025
0b157bd
mypy
MaxNumerique Sep 10, 2025
f0be8be
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique Sep 10, 2025
67f0661
Session import missing
MaxNumerique Sep 10, 2025
6caeddb
scope_session
MaxNumerique Sep 10, 2025
0c596a5
checkers
MaxNumerique Sep 10, 2025
58488fc
temporary npm: faalse
MaxNumerique Sep 10, 2025
b647e1e
get_session type
MaxNumerique Sep 10, 2025
eccc976
checkers please
MaxNumerique Sep 10, 2025
683fd6b
app_config not needed ?
MaxNumerique Sep 10, 2025
3e46a2e
changed position of get_dataabase_connection to fit OGW-Back initial …
MaxNumerique Sep 10, 2025
2afed63
Apply prepare changes
MaxNumerique Sep 10, 2025
76e4527
moved get_database_connection after definition of get_database
MaxNumerique Sep 10, 2025
c97faa0
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique Sep 10, 2025
5b1f7bc
Apply prepare changes
MaxNumerique Sep 10, 2025
61b9df0
session.commit()
MaxNumerique Sep 11, 2025
2d9b9eb
database
MaxNumerique Sep 11, 2025
0838a10
delete build folder and add it to gitignore
MaxNumerique Sep 11, 2025
98f4736
removed session.commit()
MaxNumerique Sep 11, 2025
b0a9154
imports
MaxNumerique Sep 11, 2025
72ea391
py.typed
MaxNumerique Sep 11, 2025
d26b62e
[tool.setuptools.package-data]
MaxNumerique Sep 11, 2025
89e62ad
rm app_context
MaxNumerique Sep 11, 2025
f4d664a
revert
MaxNumerique Sep 11, 2025
f86cfe3
removed connection alias
MaxNumerique Sep 11, 2025
e10e321
moved files into database folder
MaxNumerique Sep 11, 2025
640bc7e
Update .github/workflows/deploy.yml
MaxNumerique Sep 11, 2025
6b53bb9
Update pyproject.toml
MaxNumerique Sep 12, 2025
101c8bf
freeze requirements
MaxNumerique Sep 12, 2025
50d9bf5
Merge branch 'feat/githubFolder' of https://github.com/Geode-solution…
MaxNumerique Sep 12, 2025
f09c603
fix requirements
MaxNumerique Sep 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/deploy.yml
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

9 changes: 9 additions & 0 deletions .github/workflows/merge_request.yml
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
11 changes: 11 additions & 0 deletions .github/workflows/pr_update.yml
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
9 changes: 9 additions & 0 deletions .github/workflows/prepare_deploy.yml
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
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
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
12 changes: 12 additions & 0 deletions .github/workflows/test_pr.yml
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
8 changes: 8 additions & 0 deletions .gitignore
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
Loading
Loading