Pear for 1.4, mage for 1.5. File downloaded into /downloader/.cache/community/
./pear download magento-community/Shipping_Agent
./mage download community Shipping_Agent
<template name="imageUploader"> | |
<h2>Picture</h2> | |
<p> | |
{{#each images}} | |
<img src="{{url}}" alt=""> | |
<input type="button" value="remove" class="btnRemove"/> | |
{{else}} | |
No files uploaded. | |
{{/each}} | |
</p> |
Meteor.startup -> | |
if Meteor.settings.rockerSettings.mongoUser | |
@mongodbUrl = "mongodb://" + Meteor.settings.rockerSettings.mongoUser + ":" + Meteor.settings.rockerSettings.mongoPassword + "@" + Meteor.settings.rockerSettings.launchMongoDB | |
else | |
@mongodbUrl = "mongodb://" + Meteor.settings.rockerSettings.launchMongoDB | |
@replicaSet = "?replicaSet=" + Meteor.settings.rockerSettings.replicaSet | |
@authSource = "&authSource=admin" | |
Meteor.methods |
for files in *.less | |
do | |
mv "$files" "${files%.less}.import.less" | |
done |
#!/bin/bash | |
# Install required packages first | |
# | |
apt-get install -qq -y curl git gcc make build-essential imagemagick nodejs npm | |
curl https://install.meteor.com | /bin/sh | |
npm cache clean -f && npm install -g n && n 0.10.29 | |
npm install --silent -g forever meteorite phantomjs | |
# Add your Meteor application to source and bundle it to run as node app |
############################################################ | |
# Builds a Meteor 0.9.x+ application Docker image | |
# | |
# See: http://docs.docker.io/ | |
# | |
# Important: Best to run from a clean directory that hasn't had meteor run in it. | |
# Important: packages/<pkg>/.npm and .build* should not exist | |
# | |
# Example usage: | |
# cd appdir #in app dir |
docker run --rm -e ROOT_URL="http://localhost" \ | |
-e METEOR_EMAIL="[email protected]" \ | |
-e METEOR_USER="admin" \ | |
-e METEOR_AUTH="password" \ | |
-t ongoworks/reaction |
curl https://install.meteor.com | /bin/sh | |
git clone https://github.com/reactioncommerce/reaction.git | |
cd reaction | |
meteor |
Thank you for contributing code to Ongo Works and Reaction Commerce!
Like many open source projects, we need a Contributor License Agreement (CLA) from you before we can merge in your changes. You only need to fill out this agreement once. So bear with us, here comes the legalese.
In brief, by submitting your code to any Ongo Works and Reaction Commerce project, you are granting us a right to use that code under the terms of this Agreement, including providing it to others. You are also certifying that you wrote it, and that you are allowed to license it to us. You are not giving up your copyright in your work.
Contributor License Agreements are important because they define the chain of ownership of a piece of software. Some companies won't allow the use of free software without clear agreements around code ownership. That's why many open source projects collect similar agreements from contributors.