Thursday, May 31, 2018
Pre-requisites:
Download the latest release, or clone the repository.
git clone git@github.com:terramar-labs/packages.git
Switch to the project root directory and run composer install
.
cd packages
composer install
Copy config.yml.dist
to config.yml
and edit as appropriate.
cp config.yml.dist config.yml
vi config.yml
Packages uses Doctrine ORM to auto-generate the database schema for your configured platform.
bin/console orm:schema-tool:create
Check the Docker page for details on running Packages with Docker.
Start PHP's built-in webserver to run the Packages web application with minimal effort.
# Visit http://localhost:8080 to see the landing page.
php -S localhost:8080 -t web
For fully-automatic integration with GitHub, GitLab, and your Satis repository, you must always have at least one Resque worker running.
bin/console resque:worker:start
For more information on Resque workers, check the dedicated section.
Visit index_dev.php
in your browser to view the site with the dev
environment configuration. In this env, views and the service container are not cached, so changes made are immediately visible.
Your installation is complete!
Using your Packages application.
Terramar Labs