Compare commits

..

20 commits

Author SHA1 Message Date
dae1d7b9b8
Change login form to an actual form 2025-05-25 21:53:38 +00:00
5fa13de642
Implement dashboard data logic 2025-05-25 21:53:37 +00:00
1c810e6293
Implement chargepoint list route 2025-05-25 21:53:36 +00:00
8e42205301
Make transaction.meter_end required and force tz utc for all datetimes 2025-05-25 21:53:35 +00:00
4272f2878e
Add additional ORM relations and thumbs in API responses 2025-05-25 21:53:33 +00:00
791a79249c
Add dashboard endpoint 2025-05-25 21:53:32 +00:00
ceb337b87c
Encode decimals as number in JSON 2025-05-25 21:53:31 +00:00
6f91d008a1
Backend: Change status code of token invalid error 2025-05-25 21:53:30 +00:00
cb3a151748
Implement authentication logic 2025-05-25 21:53:29 +00:00
0398acf2b7
Add axios as frontend dependency 2025-05-25 21:53:28 +00:00
aa9357063f
Add basic frontend structure 2025-05-25 21:53:26 +00:00
6ea19f686f Update dependency gunicorn to v23
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
ci/woodpecker/cron/docker Pipeline was successful
2025-04-28 20:22:20 +00:00
affe80fced Update mcr.microsoft.com/devcontainers/python Docker tag to v3.13
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
ci/woodpecker/cron/docker Pipeline was successful
2025-04-28 18:36:59 +00:00
7c29e2e7ef Update python Docker tag to v3.13
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
2025-04-28 18:24:22 +00:00
bff04a1a8d
Update dependencies
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
2025-04-28 17:56:37 +00:00
e6406ffce2 Update dependency fastapi to v0.115.12
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
2025-04-28 11:00:37 +02:00
eb9f39406e Update dependency alembic to v1.15.2
Some checks failed
ci/woodpecker/push/docker Pipeline failed
2025-04-28 11:00:11 +02:00
8e45de9f44 Update dependency sqlalchemy to v2.0.40
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
2025-04-28 10:36:07 +02:00
528f411c57 Update dependency @eslint/compat to v1.2.8
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
2025-04-27 20:21:53 +00:00
043a3d49a1 Add renovate.json
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
2025-04-27 14:21:35 +00:00
5 changed files with 495 additions and 484 deletions

View file

@ -1,6 +1,6 @@
services: services:
app: app:
image: mcr.microsoft.com/devcontainers/python:3.12-bookworm image: mcr.microsoft.com/devcontainers/python:3.13-bookworm
volumes: volumes:
- ../..:/simple-ocpp-cs:cached - ../..:/simple-ocpp-cs:cached
command: sleep infinity command: sleep infinity

View file

@ -1,5 +1,5 @@
# `python-base` sets up all our shared environment variables # `python-base` sets up all our shared environment variables
FROM python:3.12-slim AS python-base FROM python:3.13-slim AS python-base
# python # python
ENV PYTHONUNBUFFERED=1 \ ENV PYTHONUNBUFFERED=1 \

970
backend/poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -14,7 +14,7 @@ uvicorn = {extras = ["standard"], version = "^0.34.0"}
websockets = "^15.0" websockets = "^15.0"
sqlalchemy = "^2.0.28" sqlalchemy = "^2.0.28"
alembic = "^1.15.1" alembic = "^1.15.1"
gunicorn = "^22.0.0" gunicorn = "^23.0.0"
psycopg2-binary = "^2.9.10" psycopg2-binary = "^2.9.10"
argon2-cffi = "^23.1.0" argon2-cffi = "^23.1.0"
jwcrypto = "^1.5.6" jwcrypto = "^1.5.6"

3
renovate.json Normal file
View file

@ -0,0 +1,3 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}