From 5ecf9dfbec5b7e6b94dbdacd42a24c9ed3ec2ca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Jer=C3=B3nimo?= Date: Fri, 9 Aug 2013 03:39:20 +0100 Subject: [PATCH] first commit --- .gitignore | 1 + README.md | 12 ++++++++++++ bin/marmita.js | 3 +++ package.json | 13 +++++++++++++ 4 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 bin/marmita.js create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/README.md b/README.md new file mode 100644 index 0000000..21899dd --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# MarmitaJS + +A platform connecting food makers, distributers and consumers should not be controlled by anyone. + +## What ? + +It's a platform and cli that comes with the tools for everyone to get any marmita delivered anywhere! + +## TODO + +1. Write a [client](https://github.com/darkbls/marmita) and a platform to make it really marmita +agnostic and not limited to "A Marmita". diff --git a/bin/marmita.js b/bin/marmita.js new file mode 100644 index 0000000..4d9b5b4 --- /dev/null +++ b/bin/marmita.js @@ -0,0 +1,3 @@ +#!/usr/bin/env node + +console.log('almost ready'); diff --git a/package.json b/package.json new file mode 100644 index 0000000..3095af1 --- /dev/null +++ b/package.json @@ -0,0 +1,13 @@ +{ + "name": "marmita", + "version": "0.0.0", + "description": "A marmita-agnostic food exchange platform", + "main": "index.js", + "bin": { + "marmita": "./bin/marmita.js" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + } + "license": "MIT" +}