Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.02 KB

File metadata and controls

45 lines (31 loc) · 1.02 KB

CMS Made Simple Dev Setup

This repository contains helper resources to streamline the developer setup of CMS Made Simple.

Quick Start

After forking and cloning the official cmsmadesimple repository:

git clone https://github.com/YOUR_USERNAME/cmsmadesimple.git
cd cmsmadesimple

Download the install.sh script from this repository:

wget https://raw.githubusercontent.com/cmsmadesimple/devsetup/refs/heads/main/install.sh
chmod +x install.sh

Then run it:

./install.sh

What It Does

  • Prompts for domain and database credentials
  • Downloads and imports the latest SQL schema
  • Generates a working config.php
  • Creates .htaccess and necessary temp directories
  • Applies proper permissions

Temporary Admin Credentials

username: cmsmsuser password: cmsmspassword

Requirements

  • Bash shell
  • mysql client
  • wget

⚠️ This script assumes you're running it from the root of the cmsmadesimple project directory.