Skip to content
This repository has been archived by the owner on Mar 16, 2019. It is now read-only.

Commit

Permalink
Move python files to scripts dir
Browse files Browse the repository at this point in the history
Ignore-this: be0c703d3e89898e21a943ff61bdc787

darcs-hash:20110129072940-1e580-46fef32f7710ba69e6ebc729ae72e4062db2ed04.gz
  • Loading branch information
jamii committed Jan 29, 2011
1 parent 1972480 commit 91eee4a
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion add
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
ulimit -s unlimited
dir=$(dirname $0)
python $dir/db.py --add=$1
python $dir/scripts/db.py --add=$1
$dir/index -update
$dir/stop
$dir/start
2 changes: 1 addition & 1 deletion db.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ javascript = /usr/bin/couchjs /usr/share/couchdb/server/main.js

[external]
index = ./query.sh
preprocess = python ./preprocessor.py
preprocess = python ./scripts/preprocessor.py

[daemons]
view_manager={couch_view, start_link, []}
Expand Down
2 changes: 1 addition & 1 deletion del
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
ulimit -s unlimited
dir=$(dirname $0)
python $dir/db.py --del=$1
python $dir/scripts/db.py --del=$1
$dir/index -update
$dir/stop
$dir/start
2 changes: 1 addition & 1 deletion init
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
dir=$(dirname $0)
$dir/index -init
python $dir/db.py --init
python $dir/scripts/db.py --init
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 91eee4a

Please sign in to comment.