Skip to content

Commit da383ed

Browse files
author
ComputelessComputer
committed
add Astro website with privacy policy and terms of service
1 parent 36e8d7f commit da383ed

11 files changed

Lines changed: 4212 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@ name: CI
33
on:
44
push:
55
branches: [main]
6+
paths:
7+
- 'src/**'
8+
- 'Cargo.toml'
9+
- 'Cargo.lock'
10+
- '.github/workflows/ci.yml'
611
pull_request:
712
branches: [main]
13+
paths:
14+
- 'src/**'
15+
- 'Cargo.toml'
16+
- 'Cargo.lock'
17+
- '.github/workflows/ci.yml'
818

919
env:
1020
CARGO_TERM_COLOR: always

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
11
/target
2+
3+
# Website
4+
website/node_modules/
5+
website/dist/
6+
website/.astro/

website/astro.config.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { defineConfig } from "astro/config";
2+
3+
export default defineConfig({
4+
site: "https://aipm.johnjeong.com",
5+
});

website/package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "@aipm/website",
3+
"type": "module",
4+
"private": true,
5+
"scripts": {
6+
"dev": "astro dev",
7+
"build": "astro build",
8+
"preview": "astro preview"
9+
},
10+
"dependencies": {
11+
"astro": "^5.4.1"
12+
}
13+
}

0 commit comments

Comments
 (0)