Skip to content

Commit 95a2a01

Browse files
committed
First sort-of working version
1 parent 0b311b0 commit 95a2a01

File tree

2 files changed

+79
-43
lines changed

2 files changed

+79
-43
lines changed

default

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
server {
2+
listen 80;
3+
server_name localhost;
4+
5+
location ^~ /editor/static/ {
6+
root /var/www/;
7+
}
8+
9+
location ^~ /static/ {
10+
root /var/www/public/;
11+
}
12+
13+
location / {
14+
uwsgi_pass 127.0.0.1:5000; # public app
15+
include uwsgi_params;
16+
}
17+
18+
location /editor/ {
19+
uwsgi_pass 127.0.0.1:5001; # editor app
20+
include uwsgi_params;
21+
}
22+
23+
error_page 404 /404.html;
24+
location = /404.html {
25+
root /var/www/http-errors/;
26+
}
27+
28+
error_page 400 401 402 403 405 406 407 408 409 410 411 412 /4xx.html;
29+
location = /4xx.html {
30+
root /var/www/http-errors/;
31+
}
32+
33+
error_page 500 501 502 503 504 507 /50x.html;
34+
location = /50x.html {
35+
root /var/www/http-errors/;
36+
}
37+
}

fabfile.py

+42-43
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,30 @@
11
from __future__ import with_statement
2-
from package_lists import *
32
from fabric.api import *
43
from fabric.colors import green
54
from fabric.contrib.console import confirm
5+
from fabric.contrib.files import exists
6+
from package_lists import *
7+
import os
68

79
env.hosts = ['[email protected]']
810

9-
def prepare_host():
10-
run('pip install -U pip')
11-
11+
@task
1212
def deploy():
13-
pass
14-
# run('git clone https://github.com/rascalmicro/rascal2-build.git')
15-
# with cd('rascal2-build'):
16-
# run('python build-rascal2.py')
17-
13+
set_hostname()
1814
set_passwords()
1915
disable_bonescript()
2016
remove_unneeded_debian_packages()
2117
install_debian_packages()
2218
install_python_modules()
23-
#install_rascal_software()
24-
#install_config_files()
25-
#allow_uwsgi_to_control_supervisor()
26-
#set_zsh_as_default_shell()
19+
install_rascal_software()
20+
install_config_files()
21+
allow_uwsgi_to_control_supervisor()
22+
set_zsh_as_default_shell()
23+
24+
def set_hostname():
25+
prompt('Enter hostname: ', 'hostname', default='rascal2')
26+
print(green('Setting hostname to: ' + env.hostname))
27+
run('echo ' + env.hostname + ' > /etc/hostname')
2728

2829
def set_passwords():
2930
print(green('Setting passwords for root and debian accounts'))
@@ -55,43 +56,41 @@ def remove_unneeded_debian_packages():
5556
run('apt-get remove -y ' + package, pty=False)
5657

5758
def install_rascal_software():
58-
greenprint('Installing Rascal editor . . .')
59-
if not (os.path.isdir('/var/www/editor')):
60-
sh.git.clone('https://github.com/rascalmicro/red.git', '/var/www/editor')
61-
if not (os.path.isdir('/var/www/public')):
62-
sh.git.clone('https://github.com/rascalmicro/demos.git', '/var/www/public')
63-
if not os.path.isdir('/var/log/uwsgi'):
64-
sh.mkdir('/var/log/uwsgi')
65-
sh.touch('/var/log/uwsgi/public.log')
66-
sh.touch('/var/log/uwsgi/emperor.log')
67-
sh.touch('/var/log/uwsgi/editor.log')
68-
sh.chown('-R', 'www-data', '/var/log/uwsgi')
69-
sh.chgrp('-R', 'www-data', '/var/log/uwsgi')
59+
print(green('Installing Rascal editor . . .'))
60+
if not exists('/var/www/editor'):
61+
run('git clone https://github.com/rascalmicro/red.git /var/www/editor')
62+
if not exists('/var/www/public'):
63+
run('git clone https://github.com/rascalmicro/demos.git /var/www/public')
64+
if not exists('/var/log/uwsgi'):
65+
run('mkdir /var/log/uwsgi')
66+
run('touch /var/log/uwsgi/public.log')
67+
run('touch /var/log/uwsgi/emperor.log')
68+
run('touch /var/log/uwsgi/editor.log')
69+
run('chown -R www-data /var/log/uwsgi')
70+
run('chgrp -R www-data /var/log/uwsgi')
7071

7172
if os.path.isdir('/var/www/editor/static/codemirror'):
72-
sh.rm('-rf', '/var/www/editor/static/codemirror')
73-
sh.wget('https://github.com/marijnh/CodeMirror/archive/4.2.0.tar.gz')
74-
sh.tar('xzvf', '4.2.0.tar.gz')
75-
sh.mv('CodeMirror-4.2.0/', '/var/www/editor/static/codemirror')
73+
run('rm -rf /var/www/editor/static/codemirror')
74+
run('wget https://github.com/marijnh/CodeMirror/archive/4.2.0.tar.gz')
75+
run('tar xzvf 4.2.0.tar.gz')
76+
run('mv CodeMirror-4.2.0/ /var/www/editor/static/codemirror')
7677

77-
sh.systemctl('enable', 'nginx.service')
78+
run('systemctl enable nginx.service')
7879

7980
def install_config_files():
80-
greenprint('Copying over config files . . .')
81-
sh.mkdir('-p', '/etc/uwsgi/vassals')
82-
sh.cp('./emperor.ini', '/etc/uwsgi/emperor.ini')
83-
sh.cp('./editor.ini', '/etc/uwsgi/vassals/editor.ini')
84-
sh.cp('./public.ini', '/etc/uwsgi/vassals/public.ini')
85-
sh.cp('./uwsgi.service', '/etc/systemd/system/uwsgi.service')
86-
sh.systemctl('enable', 'uwsgi.service')
87-
sh.cp('./vimrc', '/root/.vimrc')
81+
print(green('Copying over config files . . .'))
82+
put('default', '/etc/nginx/sites-available/')
83+
run('mkdir -p /etc/uwsgi/vassals')
84+
put('emperor.ini', '/etc/uwsgi/emperor.ini')
85+
put('editor.ini', '/etc/uwsgi/vassals/editor.ini')
86+
put('public.ini', '/etc/uwsgi/vassals/public.ini')
87+
put('uwsgi.service', '/etc/systemd/system/uwsgi.service')
88+
run('systemctl enable uwsgi.service')
89+
put('vimrc', '/root/.vimrc')
8890

8991
def allow_uwsgi_to_control_supervisor():
90-
pass
91-
# Need to add this stuff to /etc/supervisor/supervisor.conf
92-
93-
#chmod=0770 ; socket file mode (default 0700)
94-
#chown=root:supervisor
92+
run('echo "chmod=0770 ; socket file mode (default 0700)" >> /etc/supervisor/supervisor.conf')
93+
run('echo "chown=root:supervisor" >> /etc/supervisor/supervisor.conf')
9594

9695
def set_zsh_as_default_shell():
9796
pass

0 commit comments

Comments
 (0)