init CTFd source
This commit is contained in:
73
Vagrantfile
vendored
Normal file
73
Vagrantfile
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
# Install tmux, virtualenv, and mariadb-server to support development
|
||||
$preProvision= <<SCRIPT
|
||||
# Prevent attempt to access stdin, causing dpkg-reconfigure error output
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
apt-get install -y tmux virtualenvwrapper
|
||||
|
||||
# As per instructions at https://downloads.mariadb.org/mariadb/repositories
|
||||
apt-get install -y software-properties-common
|
||||
apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8 2>&1
|
||||
add-apt-repository -y 'deb [arch=amd64,arm64,i386,ppc64el] http://mirror.lstn.net/mariadb/repo/10.4/ubuntu xenial main'
|
||||
apt-get update
|
||||
apt-get install -y mariadb-server
|
||||
SCRIPT
|
||||
|
||||
# Wrap provisioning script with a virutalenv for pip packages
|
||||
$provision= <<SCRIPT
|
||||
source /usr/share/virtualenvwrapper/virtualenvwrapper_lazy.sh
|
||||
mkvirtualenv ctfd
|
||||
workon ctfd
|
||||
cd /vagrant
|
||||
./prepare.sh
|
||||
pip install -r development.txt
|
||||
|
||||
echo "Initialising database"
|
||||
commands="CREATE DATABASE ctfd;
|
||||
CREATE USER 'ctfduser'@'localhost' IDENTIFIED BY 'ctfd';
|
||||
GRANT USAGE ON *.* TO 'ctfduser'@'localhost' IDENTIFIED BY 'ctfd';
|
||||
GRANT ALL privileges ON ctfd.* TO 'ctfduser'@'localhost';FLUSH PRIVILEGES;"
|
||||
echo "${commands}" | sudo /usr/bin/mysql -u root -pctfd
|
||||
SCRIPT
|
||||
|
||||
# Start development server in a tmux session
|
||||
$startServer= <<SCRIPT
|
||||
source /usr/share/virtualenvwrapper/virtualenvwrapper_lazy.sh
|
||||
workon ctfd
|
||||
|
||||
export DATABASE_URL="mysql+pymysql://ctfduser:ctfd@localhost/ctfd"
|
||||
|
||||
cd /vagrant
|
||||
python manage.py db upgrade
|
||||
|
||||
echo "Starting CTFd"
|
||||
tmux new-session -d -n "ctfd" -c "/vagrant" -s "ctfd" "gunicorn --bind 0.0.0.0:8000 -w 4 'CTFd:create_app()'"
|
||||
SCRIPT
|
||||
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "bento/ubuntu-16.04"
|
||||
|
||||
# Create a private network, which allows host-only access to the machine
|
||||
config.vm.network "private_network", ip: "10.9.8.7"
|
||||
|
||||
# Forward the default port for the development server (4000)
|
||||
# and docker or gunicorn (8000) to host machine
|
||||
config.vm.network "forwarded_port", guest: 4000, host: 4000
|
||||
config.vm.network "forwarded_port", guest: 8000, host: 8000
|
||||
|
||||
# Pre-provision
|
||||
config.vm.provision "shell", inline: $preProvision
|
||||
|
||||
# Provisioning scripts
|
||||
config.vm.provision "shell", inline: $provision, privileged: false
|
||||
|
||||
# Start server in tmux session (every reboot)
|
||||
config.vm.provision "shell", inline: $startServer, privileged: false,
|
||||
run: "always"
|
||||
|
||||
# Install docker (convenience)
|
||||
config.vm.provision "shell", path: "scripts/install_docker.sh", privileged: false
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user