diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2012-10-16 23:57:41 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2012-10-16 23:57:41 +0200 |
commit | a3ce3f7eabbb746aa9ced430bcd55391742c738b (patch) | |
tree | e4dcab1586b725508a57bfce83f3067a95b26a89 /docs/README.md | |
parent | f563dc165ce1ee8747eea647231bf8e295d8af3f (diff) | |
download | app.sh-a3ce3f7eabbb746aa9ced430bcd55391742c738b.tar.gz app.sh-a3ce3f7eabbb746aa9ced430bcd55391742c738b.tar.bz2 app.sh-a3ce3f7eabbb746aa9ced430bcd55391742c738b.tar.xz app.sh-a3ce3f7eabbb746aa9ced430bcd55391742c738b.zip |
o Improved completion (again).
o Consistent usage of APPSH_HOME and BASEDIR.
Diffstat (limited to 'docs/README.md')
-rw-r--r-- | docs/README.md | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/docs/README.md b/docs/README.md index 22a8522..c3cb679 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,14 +1,14 @@ Installation ------------ -NOTE: No implemented yet - - git clone http:/.../app.sh.git + git clone http://.../app.sh.git mkdir /opt/apps cd /opt/apps ln -s .../app.sh.git/app.sh app.sh +NOTE: The bash completion is not perfect yet. + echo 'source .../app.sh.git/app_completion' >> ~/.bashrc Or was it `~/.bash_profile`? hmm @@ -103,3 +103,22 @@ Unclassified: * `APPSH_HOME` * `BASEDIR` +Directory Hierarchy +------------------- + +### Current + +App.sh related: + + ./app + ./.app/lib bash libraries used by app.sh and methods + ./.app/var runtime data + +Applications: + + ./<name>/<instance>/ + current - symlink to the currently installed app + versions/ - collection with all installed versions + 1.0/ + 1.1/ + 2.0/ |