Skip to content

Commit

Permalink
first commit; basic startup stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
kbjr committed Apr 2, 2013
0 parents commit ffcf060
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini

# Sublime project files
*.sublime-*

# Node modules
node_modules
20 changes: 20 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "dagger",
"version": "0.0.0",
"description": "A Node.js API server framework with Socket.IO support",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/UmbraEngineering/dagger.git"
},
"keywords": [
"framework",
"api",
"socket"
],
"author": "James Brumond",
"license": "MIT"
}
9 changes: 9 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# dagger

A Node.js API server framework with Socket.IO support

The sister project of [cloak](https://github.com/UmbraEngineering/cloak).

#### This project is in very early development. DO NOT use it.


0 comments on commit ffcf060

Please sign in to comment.