Out little project to show the current and past wind power generated in the UK in a graphical manner. View project.
-
clone the repository
git clone [email protected]:diascreative/winderful.git
-
enter the project folder
cd power
-
create a new database
mysql > CREATE DATABASE power;
-
set up the database structure
mysql power < /assets/power.db.schema.sql
-
define the project settings
-
copy config.sample.php into config.php
cp inc/config.sample.php inc/sample.php
-
edit sample.php so that it has the correct DB settings
-
-
populate the DB with the latest data
php json/update-db.php
(you can also run this from the browser)
-
For development purposes you will need to
-
install npm
-
install the project dependencies
npm install
-
run gulp
gulp
Keep this terminal open so that it automatically lints, concatenates and compresses our JS and SASS.
-
All front-end changes should be made to the files in /assets
never to those in static
. Gulp will clean static
regularly and any changes made there will be lost.