make clean
This commit is contained in:
@@ -11,6 +11,9 @@ package:
|
||||
mnml:
|
||||
./bin/build.sh
|
||||
|
||||
clean:
|
||||
./bin/clean.sh
|
||||
|
||||
# test: test-unit test-integration
|
||||
|
||||
# test-unit:
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ if [ ! -f $MNML_PATH/etc/mnml.env ]; then
|
||||
echo "-----------------------------------------------"
|
||||
|
||||
echo "export MNML_USER=\"$(whoami)\"" >> $MNML_PATH/etc/mnml.env
|
||||
echo "export MNML_PG_PASSWORD=\"$(openssl rand -base64 16)\"" >> $MNML_PATH/etc/mnml.env
|
||||
echo "export MNML_PG_PASSWORD=\"$(openssl rand -hex 16)\"" >> $MNML_PATH/etc/mnml.env
|
||||
echo "export MNML_PG_HOST=\"localhost\"" >> $MNML_PATH/etc/mnml.env
|
||||
fi
|
||||
|
||||
|
||||
Executable
+8
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
# bless you chris and andy <3
|
||||
DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||||
MNML_PATH=$(realpath "$DIR/../")
|
||||
|
||||
rm $MNML_PATH/etc/mnml.env
|
||||
rm $MNML_PATH/server/.env
|
||||
Reference in New Issue
Block a user