Getting Started Beginner

Installation Guide

Learn how to install and set up Airogel CMS for local development

Prerequisites

Required Software

SoftwareVersionPurpose
Ruby3.3+Application runtime
Node.js20+JavaScript build tools
PostgreSQL14+Database
PostGIS3.0+PostgreSQL spatial extension
Yarn1.22+JavaScript package manager

Installation Steps

1. Clone the Repository

git clone <repository-url>
cd LngCMS

2. Install Dependencies

bundle install
yarn install

3. Database Setup

# Create databases and run migrations
bin/rails db:create db:migrate

# Optionally seed with sample data
bin/rails db:seed

4. Start Development Server

bin/dev

Visit http://localhost:3000 to see the application.