Jarves standard edition is a Symfony standard edition 3.0 + Jarves installed.
All you need to do to run Jarves is:
git clone [email protected]:jarves/jarves-standard.git
cd jarves-standard
composer install
php bin/console propel:model:build #build base model
php bin/console propel:migration:diff #generates a database schema diff
php bin/console propel:migration:up #upgrade the database schema
### Installs demo data
php bin/console jarves:install:demo 127.0.0.1 /
If not already installed (type sass on your console), you need to install sass: http://sass-lang.com/install
- osx: sudo gem install sass
- linux: sudo su -c "gem install sass"
- windows: see http://sass-lang.com/install
If Jarves can not find the sass binary (by having wrong PATH variable set, that does not contain the path of sass, see which sass) the administration will be unstyled.
php bin/console server:run