2017 © Pedro Peláez
 

project standard-edition

The "Clastic Standard Edition" distribution

image

clastic/standard-edition

The "Clastic Standard Edition" distribution

  • Monday, December 14, 2015
  • by NoUseFreak
  • Repository
  • 1 Watchers
  • 0 Stars
  • 52 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1289 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Clastic Standard Edition

Welcome to the Clastic Standard Edition - a fully-functional Clastic application that you can use as the skeleton for your new applications., (*1)

This document contains information on how to download, install, and start using Clastic., (*2)

1) Installing the Standard Edition

As Clastic uses [Composer][1] to manage its dependencies, the recommended way to create a new project is to use it., (*3)

If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:, (*4)

sudo curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin/ --filename=composer

Then, use the create-project command to generate a new Clastic application:, (*5)

composer create-project clastic/standard-edition path/to/install -s dev

Composer will install Clastic and all its dependencies under the path/to/install directory., (*6)

2) Checking your System Configuration

Before starting coding, make sure that your local system is properly configured for Clastic., (*7)

Execute the check.php script from the command line:, (*8)

php app/check.php

The script returns a status code of 0 if all mandatory requirements are met, 1 otherwise., (*9)

Access the config.php script from a browser:, (*10)

http://localhost/path-to-project/web/config.php

If you get any warnings or recommendations, fix them before moving on., (*11)

3) Browsing the Demo Application

Congratulations! You're now ready to use Clastic., (*12)

Run the internal server:, (*13)

app/console server:run, (*14)

You can access your freshly installed backend at, (*15)

http://127.0.0.1:8000/admin/

4) Getting started with Clastic

TODO, (*16)

Enjoy!, (*17)

The Versions