Last active
December 18, 2015 20:38
-
-
Save rex/5841394 to your computer and use it in GitHub Desktop.
A listing of sample rex.json files that will be used throughout the rex-* ecosystem to configure and maintain modules, files, and projects.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "app" : { | |
| "name" : "Rex-App Test", | |
| "version" : "0.1.0", | |
| "root" : "~/Toolbox/" | |
| }, | |
| "git" : { | |
| "mongo" : "https://github.com/rex/rex-mongo.git", | |
| "redis" : "https://github.com/rex/rex-redis.git", | |
| "app" : "https://github.com/rex/rex-app.git", | |
| "folder" : { | |
| "exec" : "https://github.com/rex/rex-app.git", | |
| "rex-git" : "https://github.com/rex/rex-app.git", | |
| "rex-shell" : "https://github.com/rex/rex-shell.git" | |
| } | |
| }, | |
| "foreman" : { | |
| "MongoDB" : "sudo mongod --quiet", | |
| "Redis" : "redis-server --loglevel warning", | |
| "Frontend Style" : { | |
| "frontend" : "sass --watch sass:stylesheets" | |
| }, | |
| "Data Service" : { | |
| "./path/to/dataservice" : "node app.js" | |
| } | |
| }, | |
| "npm" : [ | |
| "rex-template", | |
| "nodemon", | |
| "grunt-cli" | |
| ], | |
| "mongo" : { | |
| "seedfile" : "~/path/to/import.json" | |
| }, | |
| "bundle" : { | |
| }, | |
| "gems" : [ | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment