LaravelPackages.net
Acme Inc.
Toggle sidebar
orioncms/cms

Build smarter, scale faster with OrionCMS — your code, your way.

0
0
About orioncms/cms

orioncms/cms is a Laravel package for build smarter, scale faster with orioncms — your code, your way.. It currently has 0 GitHub stars and 0 downloads on Packagist. Install it with composer require orioncms/cms. Discover more Laravel packages by orioncms or browse all Laravel packages to compare alternatives.

Last updated

OrionCMS - Installation Guide

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

  1. Clone the repository:

    git clone [email protected]:orioncms/cms.git
    
  2. Navigate to the project folder:

    cd cms
    
  3. Install dependencies:

    pnpm i
    
  4. 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.

  5. Start the development server:

    pnpm dev
    
  6. 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 using http://localhost:3000.

Enjoy building with OrionCMS 🚀

Comments