pinnackl / ambitionetreussite

Web application de l'association de Ambition & Réussite.
Apache License 2.0
1 stars 0 forks source link

Ambition & Réussite

Web application of the Ambition & Réussite association.

Setup

Requirements :

Server configuration

Apache2

To properly serve the application, you need to create an Apache2 virtualhost

<VirtualHost *:80>
   DocumentRoot "[YOUR_PATH]"
   ServerName localhost
   <Directory [YOUR_PATH]>
       AllowOverride All
       Order allow,deny
       Allow from all
   </Directory>
</VirtualHost>

Or

Nodejs

   $ polymer server -o

Note: We could have use a custom server name, but for further needs (service-worker.js), localhost is important. So be sure to remove the already existing virtualhost that use localhost. Check your host file to be sure that localhost is bound

Install dependencies

You need to install the bower dependencies by running the bower install command a the project root

    $ bower install

...