Skip to content

Latest commit

 

History

History
65 lines (51 loc) · 932 Bytes

README.md

File metadata and controls

65 lines (51 loc) · 932 Bytes

LIS - Locus Information System

Requirements

clone:

git clone https://github.com/locus-ioe/lis.git

install composer globally

sudo apt-get install composer

Documentation

manual commands

  • install composer to the project
cd <path to project>
composer install
  • create database and schema
php app/console doctrine:database:create
php app/console doctrine:schema:create
  • update database schema (if previously created)
php app/console doctrine:schema:update --force
  • usage
php app/console server:run
firefox localhost:8000 &

use makefile

  • install composer to the project
make install
  • create database and schema
make db
  • update schema (if previously created)
make smaupdate
  • usage
make run