orioncms / cms
Build smarter, scale faster with OrionCMS — your code, your way.
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 13
Language:CSS
Type:project
Requires
- php: ^8.2
- inertiajs/inertia-laravel: ^1.0
- laravel/framework: ^11.9
- laravel/jetstream: ^5.3
- laravel/sanctum: ^4.0
- laravel/tinker: ^2.9
- tightenco/ziggy: ^2.0
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pail: ^1.1
- laravel/pint: ^1.13
- laravel/sail: ^1.26
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.1
- phpunit/phpunit: ^11.0.1
This package is auto-updated.
Last update: 2025-04-26 17:50:51 UTC
README
Welcome to OrionCMS! Follow this guide to set up and run the project locally.
Prerequisites
Before starting, make sure you have the following installed:
- Node.js (v18+ recommended)
- pnpm (Package manager) - Install it globally if not already:
npm install -g pnpm
- MySQL (or SQLite) database setup and ready.
Installation Steps
-
Clone the repository:
git clone git@github.com:orioncms/cms.git
-
Navigate to the project folder:
cd cms
-
Install dependencies:
pnpm i
-
Set up your database:
-
Ensure you have database credentials ready:
- Host
- User
- Password
- Port
- Database name
-
The application expects a MySQL (or SQLite) database. Update your database details in the appropriate configuration file (
.env
or similar). If an.env
file is not available, create one in the root of the project.
-
-
Start the development server:
pnpm dev
-
Access the application: Open your browser and go to:
https://localhost:3000
Notes
- Make sure the database server is running and accessible.
- Default development port:
3000
. - If you encounter SSL issues with
https://localhost
, check your browser or consider usinghttp://localhost:3000
.