work-notes

This commit is contained in:
Bel LaPointe
2023-04-17 11:19:29 -06:00
parent 64dd14f87f
commit 026e7718ed
6 changed files with 18 additions and 0 deletions

2
work/outline/review.txt Normal file
View File

@@ -0,0 +1,2 @@
cannot run without slack/google/oidc integration for login is lame
cannot with with a personal gmail--must use business. wtf.

11
work/outline/run.sh Normal file
View File

@@ -0,0 +1,11 @@
#! /bin/bash
if [ ! -d ./outline ]; then
git clone https://github.com/outline/outline.git
fi
cd ./outline
cp .env.sample .env
echo "SECRET_KEY=$(openssl rand -hex 32)" >> .env
echo "UTILS_SECRET=$(openssl rand -hex 32)" >> .env
docker rm -f $(docker ps -aq)
make up