Skip to content

Commit 1e6f473

Browse files
authored
Merge pull request #4 from fogo-sh/frontend
frontend base
2 parents e72510d + 69536ec commit 1e6f473

27 files changed

+4025
-1
lines changed

Caddyfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
http://localhost:4000 {
2+
handle /api/* {
3+
uri strip_prefix /api
4+
reverse_proxy 127.0.0.1:8000
5+
}
6+
7+
handle {
8+
reverse_proxy 127.0.0.1:7000
9+
}
10+
}

docker-compose.yml

+6
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ services:
66
build: .
77
ports:
88
- "127.0.0.1:8000:80"
9+
10+
frontend:
11+
image: ghcr.io/fogo-sh/distributed-library-frontend
12+
build: ./frontend
13+
ports:
14+
- "127.0.0.1:7000:80"

frontend/.dockerignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

frontend/.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

frontend/Dockerfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM node:18-alpine AS builder
2+
WORKDIR /app
3+
COPY . .
4+
RUN npm install && npm run build
5+
6+
FROM nginx:alpine
7+
WORKDIR /usr/share/nginx/html
8+
RUN rm -rf ./*
9+
COPY --from=builder /app/dist .
10+
ENTRYPOINT ["nginx", "-g", "daemon off;"]

frontend/index.html

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<title>Fogo.sh Distributed Library</title>
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
9+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
10+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
11+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
12+
<link rel="manifest" href="/site.webmanifest">
13+
14+
<link rel="preconnect" href="https://rsms.me/">
15+
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
16+
</head>
17+
18+
<body class="p-4">
19+
<div id="root"></div>
20+
<script type="module" src="/src/main.tsx"></script>
21+
</body>
22+
23+
</html>

frontend/justfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
gen-types-from-api:
2+
npx openapi-typescript http://127.0.0.1:8000/openapi.json --output src/api-types.ts

0 commit comments

Comments
 (0)