Skip to content

Commit

Permalink
1.6.5 (#25)
Browse files Browse the repository at this point in the history
* bump version

* update pocketbase

* update viewport metadata

* version 1.6.5

---------

Co-authored-by: Dominic Wrege <[email protected]>
  • Loading branch information
DominicWrege and Dominic Wrege authored Dec 12, 2023
1 parent 429facb commit f922345
Show file tree
Hide file tree
Showing 6 changed files with 457 additions and 600 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/beta-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
- name: Login to Github
uses: docker/login-action@v2
with:
username: ${{ secrets.USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
- name: Login to Github
uses: docker/login-action@v2
with:
username: ${{ secrets.USERNAME }}
Expand Down
11 changes: 8 additions & 3 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Metadata } from "next";
import type { Metadata, Viewport } from "next";
import Head from "next/head";
import { Toaster } from "react-hot-toast";
import AppNav from "../components/AppNav";
Expand All @@ -7,11 +7,16 @@ import "../styles/globals.css";

const url = "https://parkfuchs.app";

export const viewport: Viewport = {
colorScheme: "light",
themeColor: "#D1D9C0B8",
width: "width=device-width, initial-scale=1.0",
initialScale: 1,
};

export const metadata: Metadata = {
title: "Parkfuchs",
description: "Schlau elektrisch parken",
themeColor: "#D1D9C0B8",
viewport: "width=device-width, initial-scale=1.0",
manifest: "/manifest.json",
appleWebApp: {
capable: true,
Expand Down
32 changes: 16 additions & 16 deletions docker-compose.prod.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
version: "3.7"

services:
pocketbase:
image: spectado/pocketbase:0.18.3
container_name: pocketbase
restart: always
ports:
- 8090:8090
volumes:
- ./pocketbase-data:/pb_data
parkfuchsweb:
image: dominicwrege/parkfuchs-web:latest
container_name: parkfuchs-web
restart: always
ports:
- 3000:3000
environment:
DB_HOST: http://pocketbase:8090
pocketbase:
image: spectado/pocketbase:0.20.1
container_name: pocketbase
restart: always
ports:
- 8090:8090
volumes:
- ./pocketbase-data:/pb_data
parkfuchsweb:
image: dominicwrege/parkfuchs-web:latest
container_name: parkfuchs-web
restart: always
ports:
- 3000:3000
environment:
DB_HOST: http://pocketbase:8090
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parkfuchs",
"version": "1.6.4",
"version": "1.6.5",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -9,40 +9,40 @@
"lint": "next lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@tailwindcss/forms": "^0.5.7",
"@types/node": "20.9.4",
"@types/react": "18.2.38",
"@types/node": "20.10.4",
"@types/react": "18.2.43",
"@types/react-dom": "18.2.17",
"axios": "^1.6.2",
"eslint": "8.54.0",
"eslint-config-next": "14.0.3",
"eslint": "8.55.0",
"eslint-config-next": "14.0.4",
"html2plaintext": "^2.1.4",
"javascript-time-ago": "^2.5.9",
"linkify-react": "^4.1.3",
"linkifyjs": "^4.1.3",
"lottie-react": "^2.4.0",
"next": "14.0.3",
"next": "14.0.4",
"next-pwa": "^5.6.0",
"pocketbase": "^0.19.0",
"pocketbase": "^0.20.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-hook-form": "^7.49.0",
"react-hot-toast": "^2.4.1",
"react-timeago": "^7.2.0",
"sanitize-html": "^2.11.0",
"sharp": "^0.32.6"
"sharp": "^0.33.0"
},
"devDependencies": {
"@types/react-list": "^0.8.10",
"@types/react-list": "^0.8.11",
"autoprefixer": "^10.4.16",
"eslint-plugin-unused-imports": "^3.0.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"typescript": "5.2.2",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"typescript": "5.3.3",
"webpack": "^5.89.0"
},
"packageManager": "[email protected]"
Expand Down
Loading

0 comments on commit f922345

Please sign in to comment.