No description
| processing | Fix ??? for one transaction | |
| website | Better looking table | |
| .env.template | Initial version | |
| .gitignore | Initial version | |
| Dockerfile | Initial version | |
| README | Initial version | |
| supervisord.conf | Initial version | |
Yes, you can contribute, see issues for more info How does it look like? https://finanse.knyfyrtel.pl To run: docker build -t etst . docker run -it -p 8000:8000 --env-file .env etst To run on k8s (or check out codeberg.org/hspoz/k8s): apiVersion: apps/v1 kind: Deployment metadata: name: finanse labels: app: finanse spec: replicas: 1 strategy: type: RollingUpdate selector: matchLabels: app: finanse template: metadata: labels: app: finanse spec: containers: - name: main image: codeberg.org/hspoz/finanse:latest resources: requests: cpu: 100m memory: 128Mi limits: cpu: 500m memory: 256Mi ports: - containerPort: 8000 name: http --- apiVersion: v1 kind: Service metadata: name: finanse labels: app: finanse spec: selector: app: finanse ports: - name: http port: 8000 targetPort: http protocol: TCP type: ClusterIP --- apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: finanse labels: app: finanse spec: tls: - hosts: - finanse.knyfyrtel.pl secretName: finanse-www-cert rules: - host: finanse.knyfyrtel.pl http: paths: - path: / pathType: Prefix backend: service: name: finanse port: name: http