forked from Maurice/pastabble
Compare commits
4 Commits
f2eaac460d
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 2d08da8923 | |||
| be9c15d7b3 | |||
| 391478b5a2 | |||
| d852e42f03 |
@@ -1,28 +0,0 @@
|
|||||||
name: Build container
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: citadel-container-builder
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Install qemu dependency
|
|
||||||
run: |
|
|
||||||
sudo dnf install -y qemu-user-static-aarch64
|
|
||||||
- name: Build
|
|
||||||
uses: redhat-actions/buildah-build@v2
|
|
||||||
with:
|
|
||||||
image: ${{ github.repository_owner }}/${{ github.event.repository.name }}
|
|
||||||
tags: latest
|
|
||||||
archs: arm64
|
|
||||||
containerfiles: |
|
|
||||||
./Containerfile
|
|
||||||
- name: Push
|
|
||||||
uses: redhat-actions/push-to-registry@v2
|
|
||||||
with:
|
|
||||||
image: ${{ github.repository_owner }}/${{ github.event.repository.name }}
|
|
||||||
tags: latest
|
|
||||||
registry: git.plabble.org
|
|
||||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
|
||||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
|
||||||
984
Cargo.lock
generated
984
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -1,11 +1,11 @@
|
|||||||
FROM node:22-alpine3.20 AS frontend-builder
|
FROM node:24-alpine3.22 AS frontend-builder
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
|
|
||||||
RUN corepack enable
|
RUN corepack enable
|
||||||
COPY pastabble-frontend/ .
|
COPY pastabble-frontend/ .
|
||||||
RUN pnpm i && pnpm build
|
RUN pnpm i && pnpm build
|
||||||
|
|
||||||
FROM rust:alpine3.20 AS builder
|
FROM rust:alpine3.22 AS builder
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
|
|
||||||
RUN apk add --no-cache musl-dev
|
RUN apk add --no-cache musl-dev
|
||||||
@@ -18,7 +18,7 @@ RUN case "$(apk --print-arch)" in \
|
|||||||
mv ./target/aarch64-unknown-linux-musl /release ;; \
|
mv ./target/aarch64-unknown-linux-musl /release ;; \
|
||||||
esac
|
esac
|
||||||
|
|
||||||
FROM alpine:3.20
|
FROM alpine:3.22
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
RUN mkdir wwwroot data && \
|
RUN mkdir wwwroot data && \
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
segment_size: 524288
|
segment_size: 524288
|
||||||
use_compression: false
|
use_compression: false
|
||||||
version: 0.34
|
version: 0.34
|
||||||
vQ<>
|
vQ<>
|
||||||
Binary file not shown.
@@ -11,13 +11,12 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@sveltejs/vite-plugin-svelte": "^5.1.0",
|
"@sveltejs/vite-plugin-svelte": "^5.1.0",
|
||||||
|
"@tailwindcss/vite": "^4.1.8",
|
||||||
"@tsconfig/svelte": "^5.0.4",
|
"@tsconfig/svelte": "^5.0.4",
|
||||||
"autoprefixer": "^10.4.21",
|
"daisyui": "^5.0.43",
|
||||||
"daisyui": "^4.12.24",
|
|
||||||
"postcss": "^8.5.4",
|
|
||||||
"svelte": "^5.33.14",
|
"svelte": "^5.33.14",
|
||||||
"svelte-check": "^4.2.1",
|
"svelte-check": "^4.2.1",
|
||||||
"tailwindcss": "^3.4.17",
|
"tailwindcss": "^4.1.8",
|
||||||
"tslib": "^2.8.1",
|
"tslib": "^2.8.1",
|
||||||
"typescript": "^5.8.3",
|
"typescript": "^5.8.3",
|
||||||
"vite": "^6.3.5"
|
"vite": "^6.3.5"
|
||||||
|
|||||||
1194
pastabble-frontend/pnpm-lock.yaml
generated
1194
pastabble-frontend/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +0,0 @@
|
|||||||
export default {
|
|
||||||
plugins: {
|
|
||||||
tailwindcss: {},
|
|
||||||
autoprefixer: {},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1,3 +1,2 @@
|
|||||||
@tailwind base;
|
@import 'tailwindcss';
|
||||||
@tailwind components;
|
@plugin "daisyui";
|
||||||
@tailwind utilities;
|
|
||||||
|
|||||||
@@ -4,6 +4,5 @@ export default {
|
|||||||
theme: {
|
theme: {
|
||||||
extend: {},
|
extend: {},
|
||||||
},
|
},
|
||||||
plugins: [require('daisyui')],
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import { defineConfig } from 'vite'
|
import { defineConfig } from 'vite'
|
||||||
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
||||||
|
import tailwindcss from '@tailwindcss/vite'
|
||||||
|
|
||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [svelte()]
|
plugins: [svelte(), tailwindcss()],
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user