Compare commits
3 Commits
e954e91cdc
...
0.2.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
ece406686e
|
|||
|
6a77c9d054
|
|||
|
24101de145
|
@@ -29,7 +29,7 @@ jobs:
|
||||
with:
|
||||
registry: gitea.marijndoeve.nl
|
||||
username: ${{ gitea.repository_owner }}
|
||||
password: ${{ secrets.GITEA_TOKEN }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
|
||||
- name: Get Meta
|
||||
id: meta
|
||||
@@ -48,4 +48,4 @@ jobs:
|
||||
linux/arm/v7
|
||||
push: true
|
||||
tags: |
|
||||
${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }}
|
||||
gitea.marijndoeve.nl/marijn/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }}
|
||||
|
||||
@@ -30,7 +30,7 @@ jobs:
|
||||
with:
|
||||
registry: gitea.marijndoeve.nl
|
||||
username: ${{ gitea.repository_owner }}
|
||||
password: ${{ secrets.GITEA_TOKEN }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
|
||||
- name: Get Meta
|
||||
id: meta
|
||||
@@ -50,5 +50,5 @@ jobs:
|
||||
linux/arm/v7
|
||||
push: true
|
||||
tags: |
|
||||
${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }}
|
||||
${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }}
|
||||
gitea.marijndoeve.nl/marijn/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }}
|
||||
gitea.marijndoeve.nl/marijn/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }}
|
||||
|
||||
3
compose.prod.yaml
Normal file
3
compose.prod.yaml
Normal file
@@ -0,0 +1,3 @@
|
||||
services:
|
||||
app:
|
||||
image: gitea.marijndoeve.nl/marijn/projectorpi-web:${IMAGE_TAG:-nightly}
|
||||
24
poetry.lock
generated
24
poetry.lock
generated
@@ -1,4 +1,4 @@
|
||||
# This file is automatically @generated by Poetry 1.5.0 and should not be changed by hand.
|
||||
# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand.
|
||||
|
||||
[[package]]
|
||||
name = "annotated-types"
|
||||
@@ -192,26 +192,6 @@ uvicorn = {version = ">=0.12.0", extras = ["standard"], optional = true, markers
|
||||
[package.extras]
|
||||
all = ["email-validator (>=2.0.0)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)", "jinja2 (>=2.11.2)", "orjson (>=3.2.1)", "pydantic-extra-types (>=2.0.0)", "pydantic-settings (>=2.0.0)", "python-multipart (>=0.0.5)", "pyyaml (>=5.3.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)", "uvicorn[standard] (>=0.12.0)"]
|
||||
|
||||
[[package]]
|
||||
name = "gunicorn"
|
||||
version = "21.2.0"
|
||||
description = "WSGI HTTP Server for UNIX"
|
||||
optional = false
|
||||
python-versions = ">=3.5"
|
||||
files = [
|
||||
{file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"},
|
||||
{file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
packaging = "*"
|
||||
|
||||
[package.extras]
|
||||
eventlet = ["eventlet (>=0.24.1)"]
|
||||
gevent = ["gevent (>=1.4.0)"]
|
||||
setproctitle = ["setproctitle"]
|
||||
tornado = ["tornado (>=0.2)"]
|
||||
|
||||
[[package]]
|
||||
name = "h11"
|
||||
version = "0.14.0"
|
||||
@@ -1270,4 +1250,4 @@ files = [
|
||||
[metadata]
|
||||
lock-version = "2.0"
|
||||
python-versions = "^3.9"
|
||||
content-hash = "60c4f32453d4674c896b8d1dc0455d924ddae803a4ac54f8eae957314350b235"
|
||||
content-hash = "e7336c333c97fb052d935d8e207a478ad3530aa0d4734eb00ad7bf26a5e42d7a"
|
||||
|
||||
@@ -1 +1 @@
|
||||
__version__ = "0.1.0"
|
||||
__version__ = "0.2.0"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "projectorpi-web"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
description = ""
|
||||
authors = ["Marijn Doeve <marijn@doeve.me>"]
|
||||
|
||||
@@ -9,7 +9,6 @@ python = "^3.9"
|
||||
fastapi = {extras = ["all"], version = "^0.101.0"}
|
||||
pydantic = "^2.0.0"
|
||||
projectorpi = {version = "^0.3.0", source = "gitea"}
|
||||
gunicorn = "^21.2.0"
|
||||
sentry-sdk = {extras = ["fastapi"], version = "^1.25.0"}
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
|
||||
@@ -10,7 +10,6 @@ email-validator==2.0.0.post2 ; python_version >= "3.9" and python_version < "4.0
|
||||
exceptiongroup==1.1.3 ; python_version >= "3.9" and python_version < "3.11"
|
||||
fastapi==0.101.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
fastapi[all]==0.101.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
gunicorn==21.2.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
h11==0.14.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
httpcore==0.17.3 ; python_version >= "3.9" and python_version < "4.0"
|
||||
httptools==0.6.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
@@ -20,7 +19,6 @@ itsdangerous==2.1.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||
jinja2==3.1.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||
markupsafe==2.1.3 ; python_version >= "3.9" and python_version < "4.0"
|
||||
orjson==3.9.5 ; python_version >= "3.9" and python_version < "4.0"
|
||||
packaging==23.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
projectorpi==0.3.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
pydantic-core==2.6.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
pydantic-extra-types==2.0.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
|
||||
Reference in New Issue
Block a user