Installation
Requirements
- PHP 8.2+
- Composer
- Node.js 18+
- npm or yarn
- SQLite, MySQL, or PostgreSQL
Installation Steps
1. Clone the Repository
bash
git clone https://github.com/vitespirite/cms.git
cd cms2. Install Dependencies
bash
composer install
npm install3. Environment Configuration
bash
cp .env.example .env
php artisan key:generateConfigure your database in .env:
env
DB_CONNECTION=sqlite
DB_DATABASE=/absolute/path/to/database.sqlite4. Run Migrations
bash
php artisan migrate5. Build Assets
bash
npm run build6. Start the Server
bash
php artisan serveVisit http://localhost:8000 🎉