Skip to content

Commit d1d541d

Browse files
committed
Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Microservice into fix/database
2 parents 827284c + b1697a3 commit d1d541d

8 files changed

Lines changed: 51 additions & 7 deletions

File tree

.github/workflows/config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"node": true
3+
}

.github/workflows/deploy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ on:
66
jobs:
77
deploy:
88
uses: Geode-solutions/actions/.github/workflows/py-deploy.yml@master
9-
with:
10-
npm: true
119
secrets: inherit

.github/workflows/schedule.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Schedule
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
branch:
7+
type: string
8+
default: "next"
9+
schedule:
10+
- cron: 0 23 * * *
11+
12+
jobs:
13+
schedule:
14+
uses: Geode-solutions/actions/.github/workflows/py-schedule.yml@master
15+
with:
16+
repos: ${{ vars.REPOS }}
17+
branch: ${{ inputs.branch || 'next' }}
18+
secrets:
19+
TOKEN: ${{ secrets.TOKEN }}
20+
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@ on:
99
jobs:
1010
test:
1111
uses: Geode-solutions/actions/.github/workflows/py-test.yml@master
12-
with:
13-
npm: true
1412
secrets: inherit

.github/workflows/test_pr.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,4 @@ on:
77
jobs:
88
test:
99
uses: Geode-solutions/actions/.github/workflows/py-test-pr.yml@master
10-
with:
11-
npm: true
1210
secrets: inherit

requirements-internal.in

Whitespace-only changes.

requirements.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SQLAlchemy==2.0.43
2+
Flask-SQLAlchemy==3.1.1
3+
fastjsonschema==2.21.1

requirements.txt

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,26 @@
11
SQLAlchemy==2.0.43
2-
fastjsonschema==2.21.1
2+
fastjsonschema==2.21.1
3+
# via -r requirements.in
4+
flask==3.1.2
5+
# via flask-sqlalchemy
6+
flask-sqlalchemy==3.1.1
7+
# via -r requirements.in
8+
greenlet==3.2.4
9+
# via sqlalchemy
10+
itsdangerous==2.2.0
11+
# via flask
12+
jinja2==3.1.6
13+
# via flask
14+
markupsafe==3.0.2
15+
# via
16+
# flask
17+
# jinja2
18+
# werkzeug
19+
sqlalchemy==2.0.43
20+
# via
21+
# -r requirements.in
22+
# flask-sqlalchemy
23+
typing-extensions==4.15.0
24+
# via sqlalchemy
25+
werkzeug==3.1.3
26+
# via flask

0 commit comments

Comments
 (0)