We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cc2816 commit 6799614Copy full SHA for 6799614
.gitignore
@@ -1 +1,4 @@
1
-.idea/
+.idea/
2
+
3
+# generated by scripts
4
+.setupMongoKeys
setupMongoShell.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# Setup mongosh - src: https://www.mongodb.com/docs/mongodb-shell/install/
if [ ! -f ./.setupMongoKeys ]; then
- ./setupMongoKeys.sh
+ $(dirname "$0")/setupMongoKeys.sh
5
fi
6
7
echo "aptitude install mongodb-mongosh"
setupMongoTools.sh
# Setup mongoDB Tools - src: https://www.mongodb.com/docs/database-tools/installation/installation-linux/
+ $(dirname "$0")//setupMongoKeys.sh
echo "aptitude install mongodb-database-tools"
0 commit comments