This file contains hidden or 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
{ | |
"spoilers": [ | |
{ | |
"spoiler": "spider-man: no way home", | |
"isRegex": false | |
}, | |
{ | |
"spoiler": "benedict cumberbatch", | |
"isRegex": false | |
}, |
This file contains hidden or 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
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get install -y python3 python3-pip nginx python3-setuptools git | |
sudo pip3 install uwsgi virtualenv Flask flask-restful gunicorn | |
sudo mkdir -p /var/www/ | |
cd /var/www/ | |
echo "<h1>Hello world!</h1>" | tee index.html |