Getting Started
Beginner
Installation Guide
Learn how to install and set up Airogel CMS for local development
Prerequisites
Required Software
| Software | Version | Purpose |
|---|---|---|
| Ruby | 3.3+ | Application runtime |
| Node.js | 20+ | JavaScript build tools |
| PostgreSQL | 14+ | Database |
| PostGIS | 3.0+ | PostgreSQL spatial extension |
| Yarn | 1.22+ | JavaScript package manager |
Installation Steps
1. Clone the Repository
git clone <repository-url>
cd LngCMS2. Install Dependencies
bundle install
yarn install3. Database Setup
# Create databases and run migrations
bin/rails db:create db:migrate
# Optionally seed with sample data
bin/rails db:seed4. Start Development Server
bin/devVisit http://localhost:3000 to see the application.