0.1.10 • Published 12 months ago
@pigeonposse/web-2024 v0.1.10
PIGEONPOSSE WEB

Use the PigeonPosse web 2024 theme.
Features
- Use locally with
JS runtime(Compatible withnode,bunanddeno) - Use with
docker. Read more. Docker hub - Use in a cloud (Cloudflare, Vercel, etc)
Prerequisites
Access to a PIGEONPOSSE API Server.
Read more in: @pigeonposse/api-2024
Installation
npm i @pigeonposse/web-2024
# or
pnpm i @pigeonposse/web-2024Usage
npx @pigeonposse/web-2024 serve --port 1312
# or
pnpx @pigeonposse/web-2024 serve --port 1312Custom Config
pnpx @pigeonposse/web-2024 serve --port 1312 --api "http://my-pigeonposse-api.com" --config ./config.jsimport {defineConfig} from '@pigeonposse/web-2024'
export default defineConfig({
/** config */
})More info
npx @pigeonposse/web-2024 serve --help
# or
pnpx @pigeonposse/web-2024 serve --helpDocker
Example With 'docker compose'.
services:
pigeon-web-2024:
image: pigeonposse/pigeon-web:2024-latest
ports:
- "13124:13124" # the web port
environment:
GH_TOKEN: ${GH_TOKEN}
GH_USER: "pigeonposse"
GH_USER_TYPE: "org" # 'user' or 'org'
GH_BRANCH: "main"
DEBUG: false
restart: always