This commit is contained in:
parent
9e3ad0422b
commit
4211805918
7 changed files with 4164 additions and 2751 deletions
|
@ -2,13 +2,13 @@
|
|||
"name": "swabsite",
|
||||
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
|
||||
"features": {
|
||||
"ghcr.io/devcontainers-community/features/deno": {}
|
||||
"ghcr.io/devcontainers/features/node": {}
|
||||
},
|
||||
"containerUser": "vscode",
|
||||
"containerEnv": {
|
||||
"ASTRO_TELEMETRY_DISABLED": "true"
|
||||
},
|
||||
"postStartCommand": "deno task install",
|
||||
"postStartCommand": "npm install",
|
||||
"runArgs": ["--userns=keep-id", "--security-opt=label=disable"],
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,5 +2,6 @@
|
|||
.DS_Store
|
||||
.env
|
||||
.env.production
|
||||
.pnpm-store
|
||||
dist
|
||||
node_modules
|
|
@ -1,8 +1,8 @@
|
|||
FROM docker.io/denoland/deno AS build
|
||||
FROM docker.io/library/node AS build
|
||||
COPY . .
|
||||
ENV ASTRO_TELEMETRY_DISABLED=true
|
||||
RUN deno task install
|
||||
RUN deno task build
|
||||
RUN npm install
|
||||
RUN npm build
|
||||
|
||||
FROM git.swablab.de/swablab/documents AS documents
|
||||
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"fmt": {
|
||||
"options": {
|
||||
"semiColons": false,
|
||||
"indentWidth": 2
|
||||
}
|
||||
}
|
||||
}
|
11
package.json
11
package.json
|
@ -2,7 +2,6 @@
|
|||
"name": "@swablab/website",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"install": "deno install -q",
|
||||
"check": "astro check",
|
||||
"dev": "astro dev",
|
||||
"build": "astro build",
|
||||
|
@ -10,14 +9,14 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/check": "^0.9.4",
|
||||
"@astrojs/sitemap": "^3.2.1",
|
||||
"@fontsource-variable/ubuntu-sans": "^5.2.5",
|
||||
"@astrojs/sitemap": "^3.3.0",
|
||||
"@fontsource-variable/ubuntu-sans": "^5.2.6",
|
||||
"@iconify-json/ph": "^1.2.2",
|
||||
"@iconify/tailwind4": "^1.0.6",
|
||||
"@tailwindcss/typography": "^0.5.16",
|
||||
"@tailwindcss/vite": "^4.0.14",
|
||||
"astro": "^5.5.2",
|
||||
"daisyui": "^5.0.4",
|
||||
"astro": "^5.5.3",
|
||||
"daisyui": "^5.0.6",
|
||||
"tailwindcss": "^4.0.14"
|
||||
},
|
||||
"prettier": {
|
||||
|
@ -25,4 +24,4 @@
|
|||
"semi": false,
|
||||
"endOfLine": "lf"
|
||||
}
|
||||
}
|
||||
}
|
4153
pnpm-lock.yaml
generated
Normal file
4153
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue