woodpecker:
This commit is contained in:
parent
60ea2d6510
commit
4a6997d232
4 changed files with 43 additions and 11 deletions
22
.woodpecker.yml
Normal file
22
.woodpecker.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
steps:
|
||||
build:
|
||||
image: node:20
|
||||
commands:
|
||||
- npm install -g pnpm
|
||||
- pnpm install
|
||||
- pnpm run build
|
||||
|
||||
deploy:
|
||||
image: alpine
|
||||
environment:
|
||||
BASE_URL: /ddr
|
||||
commands:
|
||||
- apk add rsync openssh
|
||||
- echo "$${SSH_SECRET_KEY}" > SSH_SECRET_KEY
|
||||
- chmod 600 SSH_SECRET_KEY
|
||||
- mkdir -p ~/.ssh
|
||||
- echo "mzhang.io ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO+RKFYjD8UjqhfOHFHNyijkbGzC4fJEIIhrBwHj+FsQ" >> ~/.ssh/known_hosts
|
||||
- rsync -azrP -e "ssh -i SSH_SECRET_KEY" dist/ blogDeploy@mzhang.io:/home/blogDeploy/public/ddr
|
||||
secrets: [SSH_SECRET_KEY]
|
||||
when:
|
||||
branch: master
|
25
src/App.tsx
25
src/App.tsx
|
@ -19,18 +19,23 @@ import styles from "./App.module.scss";
|
|||
import Scores from "./pages/Scores";
|
||||
import Settings from "./pages/Settings";
|
||||
|
||||
const router = createBrowserRouter([
|
||||
const router = createBrowserRouter(
|
||||
[
|
||||
{
|
||||
path: "/",
|
||||
element: <AppWrapper />,
|
||||
children: [
|
||||
{ path: "", loader: () => redirect("/charts") },
|
||||
{ path: "charts", element: <Charts />, handle: { navId: 0 } },
|
||||
{ path: "scores", element: <Scores />, handle: { navId: 1 } },
|
||||
{ path: "settings", element: <Settings />, handle: { navId: 2 } },
|
||||
],
|
||||
},
|
||||
],
|
||||
{
|
||||
path: "/",
|
||||
element: <AppWrapper />,
|
||||
children: [
|
||||
{ path: "", loader: () => redirect("/charts") },
|
||||
{ path: "charts", element: <Charts />, handle: { navId: 0 } },
|
||||
{ path: "scores", element: <Scores />, handle: { navId: 1 } },
|
||||
{ path: "settings", element: <Settings />, handle: { navId: 2 } },
|
||||
],
|
||||
basename: import.meta.env.BASE_URL,
|
||||
},
|
||||
]);
|
||||
);
|
||||
|
||||
export function AppWrapper() {
|
||||
const navigate = useNavigate();
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
{
|
||||
"compilerOptions": { "jsx": "react-jsx" }
|
||||
"compilerOptions": {
|
||||
"jsx": "react-jsx",
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Node"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@ import { VitePWA } from "vite-plugin-pwa";
|
|||
import basicSsl from "@vitejs/plugin-basic-ssl";
|
||||
|
||||
export default defineConfig({
|
||||
base: process.env.BASE_URL ?? undefined,
|
||||
server: {
|
||||
https: {},
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue