diff --git a/.meteor/packages b/.meteor/packages index 096897a..a273bc3 100644 --- a/.meteor/packages +++ b/.meteor/packages @@ -10,4 +10,5 @@ iron:router accounts-base anti:fake accounts-password +accounts-ui-bootstrap-3 diff --git a/.meteor/versions b/.meteor/versions index a889c9d..35a32fc 100644 --- a/.meteor/versions +++ b/.meteor/versions @@ -1,5 +1,6 @@ accounts-base@1.1.2 accounts-password@1.0.4 +accounts-ui-bootstrap-3@0.0.0 anti:fake@0.4.1 application-configuration@1.0.3 autoupdate@1.1.3 @@ -19,6 +20,7 @@ email@1.0.4 fastclick@1.0.1 follower-livedata@1.0.2 geojson-utils@1.0.1 +handlebars@1.0.1 html-tools@1.0.2 htmljs@1.0.2 http@1.0.8 @@ -61,6 +63,7 @@ sha@1.0.1 spacebars-compiler@1.0.3 spacebars@1.0.3 srp@1.0.1 +stylus@1.0.5 templating@1.0.9 tracker@1.0.3 ui@1.0.4 diff --git a/README.md b/README.md new file mode 100644 index 0000000..f34b789 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Locc3 Application + +## Install +```` +npm install -g meteorite +mrt install +meteor --settings private/settings.json +```` diff --git a/lib/config.js b/lib/config.js deleted file mode 100644 index 665c00e..0000000 --- a/lib/config.js +++ /dev/null @@ -1,5 +0,0 @@ -var config = { - "environment": "dev", - "ean_prefix": "200", - "ean_prefix_dev": "201" -} diff --git a/private/settings.json b/private/settings.json new file mode 100644 index 0000000..ee8c7f1 --- /dev/null +++ b/private/settings.json @@ -0,0 +1,7 @@ +{ + "environment": "dev", + "public": { + "ean_prefix": "200", + "ean_prefix_dev": "201" + } +}