~repos /website
git clone https://pyrossh.dev/repos/website.git
木 Personal website of pyrossh. Built with astrojs, shiki, vite.
8718e3fc
—
pyrossh 2 weeks ago
Change Repos to git
- package.json +5 -5
- src/pages/index.astro +1 -1
package.json
CHANGED
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"tauri": "tauri",
|
|
11
11
|
"dev": "astro dev",
|
|
12
|
+
"dev:android": "tauri android dev -v",
|
|
13
|
+
"dev:ios": "tauri ios dev",
|
|
12
14
|
"build": "astro build",
|
|
13
15
|
"build:tauri": "astro build",
|
|
14
|
-
"
|
|
16
|
+
"deploy": "alchemy deploy --stage prd",
|
|
15
|
-
"dev:android": "tauri android dev -v",
|
|
16
17
|
"build:android": "tauri android build --aab",
|
|
17
|
-
"build:android:sign": "bundletool build-apks --bundle=src-tauri/gen/android/app/build/outputs/bundle/universalRelease/app-universal-release.aab --output=./app-universal-release.apks --mode=universal --ks=../config/pyrossh_keystore.jks --ks-key-alias=pyrossh --ks-pass=pass:Test@123 --key-pass=pass:Test@123"
|
|
18
|
-
"dev:ios": "tauri ios dev"
|
|
18
|
+
"build:android:sign": "bundletool build-apks --bundle=src-tauri/gen/android/app/build/outputs/bundle/universalRelease/app-universal-release.aab --output=./app-universal-release.apks --mode=universal --ks=../config/pyrossh_keystore.jks --ks-key-alias=pyrossh --ks-pass=pass:Test@123 --key-pass=pass:Test@123"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@appzic/astro-reset-css": "^1.2.0",
|
|
@@ -41,4 +41,4 @@
|
|
|
41
41
|
"@types/bun": "^1.3.2",
|
|
42
42
|
"diff2html": "^3.4.52"
|
|
43
43
|
}
|
|
44
|
-
}
|
|
44
|
+
}
|
src/pages/index.astro
CHANGED
|
@@ -92,7 +92,7 @@ import styles from "./index.module.css";
|
|
|
92
92
|
</ul>
|
|
93
93
|
</section>
|
|
94
94
|
<section>
|
|
95
|
-
<h2>
|
|
95
|
+
<h2>Git</h2>
|
|
96
96
|
<div class={styles.repos}>
|
|
97
97
|
{
|
|
98
98
|
REPOS.map((repo) => (
|