├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── LICENSE ├── README.md ├── cozinhapp.css ├── cozinhapp.html ├── cozinhapp.js └── img ├── bolo-acucarado.jpg ├── bolo-brigadeiro.jpg ├── bolo-nutella.jpg └── bolo-sodecenoura.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.2.1 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/.meteor/versions -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/README.md -------------------------------------------------------------------------------- /cozinhapp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/cozinhapp.css -------------------------------------------------------------------------------- /cozinhapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/cozinhapp.html -------------------------------------------------------------------------------- /cozinhapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/cozinhapp.js -------------------------------------------------------------------------------- /img/bolo-acucarado.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/img/bolo-acucarado.jpg -------------------------------------------------------------------------------- /img/bolo-brigadeiro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/img/bolo-brigadeiro.jpg -------------------------------------------------------------------------------- /img/bolo-nutella.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/img/bolo-nutella.jpg -------------------------------------------------------------------------------- /img/bolo-sodecenoura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiolopes/cozinhapp/HEAD/img/bolo-sodecenoura.jpg --------------------------------------------------------------------------------