summaryrefslogtreecommitdiffstats
path: root/quickstart/README
blob: c61ca0613b71b6c2866f8202308e2ee1a447c359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
The "ontogen" symlink mimics the git submodule within consuming repo.

When using this subdir as a start point for a new project, follow this:

$ ONTOGENREPO=git://fedorapeople.org/home/fedora/jpokorny/public_git/ontogen.git
$ PREFIX=$(basename $(pwd))
$ git init .
$ git submodule add "${ONTOGENREPO}"
$ WHAT="Makefile .gitignore"
$ # WHAT+=" .htaccess"
$ for f in ${WHAT}; do ln -s {ontogen/quickstart/,}$f; done
$ cat ontogen/quickstart/template.py \
    | sed "s|template|${PREFIX}|g"   \
    > ${PREFIX}.py