This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'cljs.build.api) | |
(cljs.build.api/build "src" | |
{:output-to "out/main.js" | |
:optimizations :advanced | |
:pretty-print true | |
:closure-defines { | |
'goog.DEBUG false | |
'goog.LOCALE "nl"}}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo mkdir /shared | |
sudo mkdir /shared/folder | |
sudo chown ubuntuusername:ubuntuusername /shared/folder | |
touch ~/.credentials | |
echo "username=storageaccountname" | sudo tee ~/.credentials | |
echo "password=azureaccesskey" | sudo tee ~/.credentials | |
chmod 600 ~/.credentials | |
echo "" | sudo tee -a /etc/fstab | |
echo "//storageaccountname.file.core.windows.net/filesharename /shared/folder cifs vers=2.1,credentials=/home/username/.credentials 0 0" | sudo tee -a /etc/fstab |