]> git.phdru.name Git - cookiecutter.git/blobdiff - mk-project
Rename cookiecutter -> mk-project
[cookiecutter.git] / mk-project
diff --git a/mk-project b/mk-project
new file mode 100755 (executable)
index 0000000..c23664c
--- /dev/null
@@ -0,0 +1,31 @@
+#! /bin/sh
+
+if [ -z "$1" -o -n "$2" ]; then
+   echo "Usage: $0 project_name" >&2
+   exit 1
+fi
+
+project_name="$1"
+
+cd "`dirname \"$0\"`" &&
+rm -rf "$HOME/tmp/$project_name" &&
+cp -ap project_template "$HOME/tmp/$project_name" &&
+
+cd "$HOME/tmp/$project_name" &&
+mv project "$project_name" &&
+
+replace '{project}' "$project_name" .gitignore README.txt \
+   devscripts/README.html  docs/genapidocs docs/install.rst \
+   mk-distr publish-docs setup.py tox.ini &&
+
+sphinx-quickstart --project="$project_name" --author="Oleg Broytman" \
+   -v0.0 -r0.0.1 --ext-autodoc --makefile --no-batchfile -q docs &&
+
+git init &&
+echo /publish-docs >>.git/info/exclude &&
+echo /update-remotes >>.git/info/exclude &&
+git add . &&
+git commit --message "Initial commit - created the project" &&
+git config htdocs.path "$HOME"/Internet/WWW/htdocs/phdru.name/Software/Python/"$project_name"/docs &&
+cp -p "$HOME"/current/projects/m_lib/update-remotes . &&
+exec ./mk-git-aliases