set up basicauth config to protect staging site

This commit is contained in:
Jim Moffet
2022-06-30 17:05:42 -07:00
parent 6d3f67fb9b
commit 509cce38f4
10 changed files with 30 additions and 10 deletions

View File

@@ -13,7 +13,8 @@
},
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.pythonPath": "/usr/local/bin/python"
"python.pythonPath": "/usr/local/bin/python",
"python.linting.pylintPath": "/usr/local/share/pip-global/bin/pylint"
},
"features": {
"docker-from-docker": {
@@ -22,7 +23,7 @@
}
},
"extensions": [
"ms-python.black-formatter",
"ms-python.python", // "ms-python.black-formatter"
"donjayamanne.python-extension-pack",
"ms-azuretools.vscode-docker",
"ms-python.vscode-pylance",

View File

@@ -28,6 +28,7 @@ RUN apt-get update \
tldr \
unzip \
vim \
apache2-utils \
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*

View File

@@ -7,6 +7,8 @@ set -ex
# tools and the filesystem mount enabled should be located here.
###################################################################
echo "RUNNING ENTRYPOINT SCRIPT"
# Define aliases
echo -e "\n\n# User's Aliases" >> ~/.zshrc
echo -e "alias fd=fdfind" >> ~/.zshrc
@@ -33,4 +35,6 @@ make generate-version-file
npm run build
# run flask
# make run
# make run
echo "FINISHED ENTRYPOINT SCRIPT"