Skip to content

Commit

Permalink
Add license to server
Browse files Browse the repository at this point in the history
  • Loading branch information
rpechayr committed Feb 27, 2014
1 parent 00be838 commit b7dc2ef
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Expand Up @@ -9,7 +9,9 @@ dev: lib
@coffee -wc --bare -o lib src/*.coffee

lib: license
@find src -name '*.coffee' | xargs coffee -c -o lib
@find src -name '*.coffee' -maxdepth 1 | xargs coffee -c -o lib
@find src/frontend -name '*.coffee' -maxdepth 1 | xargs coffee -c -o lib/frontend
@cp -R src/frontend/public lib/frontend

license:
@bash inject_license.sh
Expand Down
6 changes: 6 additions & 0 deletions examples/server.coffee
@@ -1,3 +1,9 @@
###
Flowqueues - Queue based programming for node.js
(c) Copyright 2014 Applidget SAS
Released under the MIT License
###

flowqueues = require("../src/flowqueues")
redis = require("redis").createClient()

Expand Down

0 comments on commit b7dc2ef

Please sign in to comment.