Skip to content

Commit

Permalink
updated gruntfile and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonnie Spratley committed Nov 22, 2013
1 parent 8a4ac21 commit 82ba94b
Show file tree
Hide file tree
Showing 22 changed files with 9,634 additions and 1,937 deletions.
613 changes: 288 additions & 325 deletions Gruntfile.js

Large diffs are not rendered by default.

37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,49 @@ The purpose of this CMS is for many reasons, the most important reason is this i
The book is going to be published during the 2nd quarter of the new year by Packt Publishing. Each piece has to do with a corresponding chapter in the book that I am writing.


## Server
The server is a Node.js server that supports dynamic RESTful API calls to resource endpoints.

Base URL: `http://localhost:8181/api/v2`


HTTP | METHOD | ENDPOINT
------------ | ------------- | ------------
GET | findAll | /database/table
GET | findById | /database/table/:id
POST | add | /database/table
PUT | update | /database/table/:id
DELETE | destroy | /database/table/:id

### Socket Server
This is a socket server implementation for "real" time analytics and other data.
This is for use with geo analytics and other backend data from the app. listen for connected clients

### Socket Server Channels
These are the events that this socket server dispatches.


1. cms:authorization
2. cms:client:message
3. cms:client:connect
4. cms:client:disconnect
5. cms:server:message
6. cms:server:disconnect
7. cms:server:connect
8. cms:

## Features




_(Coming soon)_






### Must Have
* user management & user roles
* action and view permissions
Expand Down
2 changes: 1 addition & 1 deletion db/mongod.lock
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9894
832
76 changes: 76 additions & 0 deletions docs/css/animations.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
.reveal {
-webkit-transition:1s linear all;
-moz-transition:1s linear all;
-o-transition:1s linear all;
transition:1s linear all;

opacity:0;
}
.reveal.reveal-active {
opacity:1;
}

.slide-reveal {
-webkit-transition:0.5s linear all;
-moz-transition:0.5s linear all;
-o-transition:0.5s linear all;
transition:0.5s linear all;
opacity:0.5;

position:relative;
opacity:0;
top:10px;
}
.slide-reveal.slide-reveal-active {
top:0;
opacity:1;
}

.expand-enter {
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;

opacity:0;
max-height:0;
overflow:hidden;
}
.expand-enter.expand-enter-active {
opacity:1;
max-height:40px;
}

.expand-leave {
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;

opacity:1;
max-height:40px;
overflow:hidden;
}
.expand-leave.expand-leave-active {
opacity:0;
max-height:0;
}

.example-animate-container {
position:relative;
background:white;
border:1px solid black;
height:40px;
overflow:hidden;
}

.example-animate-container > div {
padding:1em;
}

.animator-container.animations-off * {
-webkit-transition: none;
-moz-transition: none;
-o-transition: color 0 ease-in; /* opera is special :) */
transition: none;
}
Loading

0 comments on commit 82ba94b

Please sign in to comment.