-
Notifications
You must be signed in to change notification settings - Fork 8
Getting started
James Baicoianu edited this page Apr 14, 2016
·
3 revisions
First, set up the Elation Engine so it's accessible to the web
# clone core Elation library, somewhere outside of your web root
git clone -b next https://github.com/jbaicoianu/elation.git
cd elation
# initialize it for web usage
./elation web init
# add Elation Engine and Cyclone Physics as submodules
git clone https://github.com/jbaicoianu/elation-engine.git components/engine
git clone https://github.com/jbaicoianu/cyclone-physics-js.git components/physics
# enable the components
./elation component enable engine
./elation component enable physics
# now symlink the elation/htdocs directory somewhere within your webroot
cd /var/www
ln -s ~-/htdocs elation