2 files changed, 7 insertions(+), 3 deletions(-)
M README.md
M dev
M README.md => README.md +2 -3
@@ 1,6 1,6 @@
# baal
-> json based web mail (jmail)
+> Single bibary, json based email server and client
[![builds.sr.ht status](https://builds.sr.ht/~skiqqy/baal/commits/.build.yml.svg)](https://builds.sr.ht/~skiqqy/baal/commits/.build.yml?)
@@ 19,14 19,13 @@
> Simply Invoke
```
-$ make
+$ . dev && make # Sets up env vars and builds
```
### Dependencies
| lib | Usage |
| ----- | ------------------- |
-| [cJSON](https://github.com/DaveGamble/cJSON) | Handle json parsing |
| [openssl](https://www.openssl.org/docs/man1.0.2/man3/SHA256.html) | Handle Encryption |
### Installing
M dev => dev +5 -0
@@ 10,3 10,8 @@ alias test='make && bash test.sh'
# For runtime
export LD_LIBRARY_PATH=$(pwd)/libs/cJSON/build # Find cJSON libs in bin
+
+if [[ ! "$PS1" =~ ^\[BaalDev\].*$ ]]
+then
+ export PS1="[BaalDev] $PS1" # Update PS1 to indicate we have sourced . dev
+fi