├── .gitignore ├── README.md ├── collection ├── chatroom │ ├── app.dpd │ ├── public │ │ ├── css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ ├── index.html │ │ └── js │ │ │ ├── chatroom.js │ │ │ └── lib │ │ │ └── jquery.js │ └── resources │ │ └── messages │ │ ├── config.json │ │ ├── delete.js │ │ ├── post.js │ │ ├── put.js │ │ └── validate.js ├── comments-1 │ ├── app.dpd │ ├── public │ │ ├── index.html │ │ └── script.js │ └── resources │ │ └── comments │ │ └── config.json ├── todo-app-angular │ ├── app.dpd │ ├── public │ │ ├── css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ ├── index.html │ │ └── js │ │ │ ├── lib │ │ │ ├── angular.js │ │ │ └── jquery.js │ │ │ └── todo.js │ └── resources │ │ └── todos │ │ └── config.json ├── todo-app-backbone │ ├── app.dpd │ ├── public │ │ ├── css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ ├── index.html │ │ └── js │ │ │ ├── lib │ │ │ ├── backbone-min.js │ │ │ ├── jquery.js │ │ │ └── underscore-min.js │ │ │ └── todo.js │ └── resources │ │ └── todos │ │ └── config.json └── todo-app │ ├── app.dpd │ ├── public │ ├── css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── index.html │ └── js │ │ ├── lib │ │ └── jquery.js │ │ └── todo.js │ └── resources │ └── todos │ └── config.json ├── dpd-event └── custom-response-example │ ├── app.dpd │ ├── node_modules │ └── dpd-event │ │ ├── index.js │ │ └── package.json │ ├── package.json │ ├── public │ └── index.html │ └── resources │ ├── custom-users │ ├── config.json │ └── get.js │ └── users │ └── config.json └── users ├── login-form ├── app.dpd ├── public │ ├── css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── index.html │ ├── js │ │ └── lib │ │ │ └── jquery.js │ ├── register.html │ └── welcome.html └── resources │ └── users │ └── config.json └── micro-blog ├── app.dpd ├── public ├── css │ ├── bootstrap.min.css │ └── style.css ├── img │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png ├── index.html ├── js │ ├── global.js │ ├── index.js │ ├── lib │ │ ├── angular.js │ │ └── jquery.js │ ├── register.js │ └── user.js ├── partials │ ├── feed.html │ └── header.html ├── register.html └── user.html └── resources ├── posts ├── config.json ├── post.js ├── put.js └── validate.js └── users ├── config.json ├── put.js └── validate.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/README.md -------------------------------------------------------------------------------- /collection/chatroom/app.dpd: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /collection/chatroom/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/chatroom/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /collection/chatroom/public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/chatroom/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /collection/chatroom/public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/chatroom/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /collection/chatroom/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/chatroom/public/index.html -------------------------------------------------------------------------------- /collection/chatroom/public/js/chatroom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/chatroom/public/js/chatroom.js -------------------------------------------------------------------------------- /collection/chatroom/public/js/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/chatroom/public/js/lib/jquery.js -------------------------------------------------------------------------------- /collection/chatroom/resources/messages/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/chatroom/resources/messages/config.json -------------------------------------------------------------------------------- /collection/chatroom/resources/messages/delete.js: -------------------------------------------------------------------------------- 1 | cancel(); -------------------------------------------------------------------------------- /collection/chatroom/resources/messages/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/chatroom/resources/messages/post.js -------------------------------------------------------------------------------- /collection/chatroom/resources/messages/put.js: -------------------------------------------------------------------------------- 1 | cancel(); -------------------------------------------------------------------------------- /collection/chatroom/resources/messages/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/chatroom/resources/messages/validate.js -------------------------------------------------------------------------------- /collection/comments-1/app.dpd: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /collection/comments-1/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/comments-1/public/index.html -------------------------------------------------------------------------------- /collection/comments-1/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/comments-1/public/script.js -------------------------------------------------------------------------------- /collection/comments-1/resources/comments/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/comments-1/resources/comments/config.json -------------------------------------------------------------------------------- /collection/todo-app-angular/app.dpd: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /collection/todo-app-angular/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-angular/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /collection/todo-app-angular/public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-angular/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /collection/todo-app-angular/public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-angular/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /collection/todo-app-angular/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-angular/public/index.html -------------------------------------------------------------------------------- /collection/todo-app-angular/public/js/lib/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-angular/public/js/lib/angular.js -------------------------------------------------------------------------------- /collection/todo-app-angular/public/js/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-angular/public/js/lib/jquery.js -------------------------------------------------------------------------------- /collection/todo-app-angular/public/js/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-angular/public/js/todo.js -------------------------------------------------------------------------------- /collection/todo-app-angular/resources/todos/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-angular/resources/todos/config.json -------------------------------------------------------------------------------- /collection/todo-app-backbone/app.dpd: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /collection/todo-app-backbone/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-backbone/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /collection/todo-app-backbone/public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-backbone/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /collection/todo-app-backbone/public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-backbone/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /collection/todo-app-backbone/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-backbone/public/index.html -------------------------------------------------------------------------------- /collection/todo-app-backbone/public/js/lib/backbone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-backbone/public/js/lib/backbone-min.js -------------------------------------------------------------------------------- /collection/todo-app-backbone/public/js/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-backbone/public/js/lib/jquery.js -------------------------------------------------------------------------------- /collection/todo-app-backbone/public/js/lib/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-backbone/public/js/lib/underscore-min.js -------------------------------------------------------------------------------- /collection/todo-app-backbone/public/js/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-backbone/public/js/todo.js -------------------------------------------------------------------------------- /collection/todo-app-backbone/resources/todos/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app-backbone/resources/todos/config.json -------------------------------------------------------------------------------- /collection/todo-app/app.dpd: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /collection/todo-app/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /collection/todo-app/public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /collection/todo-app/public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /collection/todo-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app/public/index.html -------------------------------------------------------------------------------- /collection/todo-app/public/js/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app/public/js/lib/jquery.js -------------------------------------------------------------------------------- /collection/todo-app/public/js/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app/public/js/todo.js -------------------------------------------------------------------------------- /collection/todo-app/resources/todos/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/collection/todo-app/resources/todos/config.json -------------------------------------------------------------------------------- /dpd-event/custom-response-example/app.dpd: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /dpd-event/custom-response-example/node_modules/dpd-event/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/dpd-event/custom-response-example/node_modules/dpd-event/index.js -------------------------------------------------------------------------------- /dpd-event/custom-response-example/node_modules/dpd-event/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/dpd-event/custom-response-example/node_modules/dpd-event/package.json -------------------------------------------------------------------------------- /dpd-event/custom-response-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/dpd-event/custom-response-example/package.json -------------------------------------------------------------------------------- /dpd-event/custom-response-example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/dpd-event/custom-response-example/public/index.html -------------------------------------------------------------------------------- /dpd-event/custom-response-example/resources/custom-users/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "EventResource" 3 | } -------------------------------------------------------------------------------- /dpd-event/custom-response-example/resources/custom-users/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/dpd-event/custom-response-example/resources/custom-users/get.js -------------------------------------------------------------------------------- /dpd-event/custom-response-example/resources/users/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "UserCollection" 3 | } -------------------------------------------------------------------------------- /users/login-form/app.dpd: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /users/login-form/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/login-form/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /users/login-form/public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/login-form/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /users/login-form/public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/login-form/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /users/login-form/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/login-form/public/index.html -------------------------------------------------------------------------------- /users/login-form/public/js/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/login-form/public/js/lib/jquery.js -------------------------------------------------------------------------------- /users/login-form/public/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/login-form/public/register.html -------------------------------------------------------------------------------- /users/login-form/public/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/login-form/public/welcome.html -------------------------------------------------------------------------------- /users/login-form/resources/users/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "UserCollection" 3 | } -------------------------------------------------------------------------------- /users/micro-blog/app.dpd: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /users/micro-blog/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /users/micro-blog/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/css/style.css -------------------------------------------------------------------------------- /users/micro-blog/public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /users/micro-blog/public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /users/micro-blog/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/index.html -------------------------------------------------------------------------------- /users/micro-blog/public/js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/js/global.js -------------------------------------------------------------------------------- /users/micro-blog/public/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/js/index.js -------------------------------------------------------------------------------- /users/micro-blog/public/js/lib/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/js/lib/angular.js -------------------------------------------------------------------------------- /users/micro-blog/public/js/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/js/lib/jquery.js -------------------------------------------------------------------------------- /users/micro-blog/public/js/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/js/register.js -------------------------------------------------------------------------------- /users/micro-blog/public/js/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/js/user.js -------------------------------------------------------------------------------- /users/micro-blog/public/partials/feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/partials/feed.html -------------------------------------------------------------------------------- /users/micro-blog/public/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/partials/header.html -------------------------------------------------------------------------------- /users/micro-blog/public/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/register.html -------------------------------------------------------------------------------- /users/micro-blog/public/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/public/user.html -------------------------------------------------------------------------------- /users/micro-blog/resources/posts/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/resources/posts/config.json -------------------------------------------------------------------------------- /users/micro-blog/resources/posts/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/resources/posts/post.js -------------------------------------------------------------------------------- /users/micro-blog/resources/posts/put.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/resources/posts/put.js -------------------------------------------------------------------------------- /users/micro-blog/resources/posts/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/resources/posts/validate.js -------------------------------------------------------------------------------- /users/micro-blog/resources/users/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/resources/users/config.json -------------------------------------------------------------------------------- /users/micro-blog/resources/users/put.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/resources/users/put.js -------------------------------------------------------------------------------- /users/micro-blog/resources/users/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deployd/examples/HEAD/users/micro-blog/resources/users/validate.js --------------------------------------------------------------------------------