Skip to content
This repository was archived by the owner on Dec 14, 2025. It is now read-only.

Latest commit

 

History

87 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ChibiPress

A tiny (chibi) CMS with TALL stack. It covers:

  • Manage Posts
  • Manage Categories
  • Manage Pages
  • Manage Media
  • Manage Users

This project deploy on Fly.io and can be access with these accounts:

# Admin role
Email: admin@cms.test
# Editor role
Email: editor@cms.test
# Author role
Email: author@cms.test

All accounts can be accessed with password: password.

API documentation provided in URL: https://chibipress.fly.dev/docs/api

Deployment Diagram

graph TB
    subgraph "Development Environment"
        PHP[PHP 8.3]
        Node[Node.js 20<br/>Asset Building]
        Laravel[Laravel 12<br/>Framework]
    end
    
    subgraph "Application Services"
        Redis[Redis<br/>Cache & Queue]
        Supabase[Supabase<br/>PostgreSQL Database]
        R2[Cloudflare R2<br/>S3-Compatible Storage]
    end
    
    subgraph "Container & Deployment"
        FrankenPHP[FrankenPHP<br/>Docker Container]
        Fly[Fly.io<br/>Deployment Platform]
    end
    
    subgraph "Client"
        Browser[Web Browser]
        Mobile[Mobile Apps]
    end
    
    %% Relationships
    PHP --> Laravel
    Node --> Laravel
    Laravel --> Redis
    Laravel --> Supabase
    Laravel --> R2
    Laravel --> FrankenPHP
    FrankenPHP --> Fly
    Browser --> Fly
    Mobile --> Fly
    
    %% Styling
    classDef runtime fill:#e1f5fe
    classDef services fill:#f3e5f5
    classDef deployment fill:#e8f5e8
    classDef client fill:#fff3e0
    
    class PHP,Node,Laravel runtime
    class Redis,Supabase,R2 services
    class FrankenPHP,Fly deployment
    class Browser,Mobile client
Loading

Prerequisites

  • Laravel version 12
  • PHP version 8.3
  • Redis
  • Postgresql or MySQL. Not Sqlite because it uses the Laravel Scout for full-text search.
  • NodeJS
  • Cloudflare account to create Cloudflare R2 Bucket (S3 compatible)

To make better development experience, use Herd or Laragon.

How to run?

This project use Laravel version 12 and use PHP version 8.3.

  1. Clone this project.
  2. Go to project and copy environment template.
cp .env.example .env
  1. Run composer install and pnpm install to install dependencies.
composer install && pnpm install
  1. Adjust environment for database connection, s3, and redis.

  2. Run command below to generate APP_KEY.

php artisan key:generate
  1. Run artisan migrate and artisan seeder.
php artisan migrate
php artisan db:seed
  1. Run composer run dev command to access project in http://localhost:8000

About

A tiny (chibi) CMS with TALL stack

Resources

Stars

0 stars

Watchers

0 watching

Forks

Contributors

Languages