-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use common fablib; use timestamp as default version; commit/push buil…
…d directory; custom banner on config.json
- Loading branch information
jywsn
committed
Sep 26, 2013
1 parent
d2163e8
commit fb0ab39
Showing
24 changed files
with
50 additions
and
7,117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
from os.path import abspath, basename, dirname, join | ||
import sys | ||
from fabric.api import env | ||
|
||
# | ||
# Project-specific settings, alter as needed | ||
# | ||
# env.project_name = basename(dirname(__file__)) | ||
env.project_name = 'TimelineJS' | ||
|
||
# | ||
# Add paths | ||
# | ||
def add_paths(*args): | ||
"""Make paths are in sys.path.""" | ||
for p in args: | ||
if p not in sys.path: | ||
sys.path.append(p) | ||
|
||
project_path = dirname(abspath(__file__)) | ||
repos_path = dirname(project_path) | ||
fablib_path = join(repos_path, 'fablib') | ||
|
||
add_paths(project_path, repos_path, fablib_path) | ||
|
||
# | ||
# Import from fablib | ||
# | ||
from fablib import * |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.