Skip to content

Commit 4778c70

Browse files
committed
initial commit
0 parents  commit 4778c70

36 files changed

+9653
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
raw
2+
*.sw?
3+
.DS_Store
4+
node_modules

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
docs/
2+
index.html

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# .travis.yml
2+
language: node_js
3+
node_js:
4+
- 0.8
5+
- 0.6
6+
7+
before_script:
8+
- mysql -e 'create database myapp_test;'
9+
- psql -c 'create database myapp_test;' -U postgres

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Bookshelf

0 commit comments

Comments
 (0)