mirror of
https://github.com/Afilmory/afilmory
synced 2026-02-01 22:48:17 +00:00
14 lines
292 B
Bash
14 lines
292 B
Bash
#! /bin/bash
|
|
|
|
cp -r photos ./apps/web/public/photos
|
|
|
|
echo 'import { defineBuilderConfig } from "@afilmory/builder";
|
|
|
|
export default defineBuilderConfig(() => ({
|
|
storage: {
|
|
provider: "local",
|
|
basePath: "./apps/web/public/photos",
|
|
baseUrl: "/photos",
|
|
},
|
|
}))' >builder.config.ts
|