aboutsummaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2016-07-06 18:07:22 +0100
committerDave Arter <davea@mysociety.org>2016-07-19 17:56:22 +0100
commit6afbfe45183412e35e8e846fd0d4a9d846c8644b (patch)
tree3f5cb6173c08a571811f0a31508b45acf31d69f7 /Vagrantfile
parent65545553b5171f1ef1d611ea93c38f138451fb31 (diff)
Use normal user authentication to control access to /admin
- Adds is_superuser flag to User - Logged-in user must be a superuser or have from_body set in order to access anything within /admin - has_permission_to on a superuser will always return true - Only superusers can create/grant superusers - New `createsuperuser` command for creating superusers
Diffstat (limited to 'Vagrantfile')
-rwxr-xr-xVagrantfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 31f645da7..80e79846d 100755
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -49,12 +49,15 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# We want to be on port 3000 for development
sed -i -r -e "s,^( *BASE_URL: .*)',\\1:3000'," fixmystreet/conf/general.yml
fi
+ # Create a superuser for the admin
+ fixmystreet/bin/createsuperuser superuser@example.org password
if [ $SUCCESS -eq 0 ]; then
# All done
echo "****************"
echo "You can now ssh into your vagrant box: vagrant ssh"
echo "The website code is found in: ~/fixmystreet"
echo "You can run the dev server with: script/fixmystreet_app_server.pl [-d] [-r] [--fork]"
+ echo "Access the admin with username: superuser@example.org and password: password"
else
echo "Unfortunately, something appears to have gone wrong with the installation."
echo "Please see above for any errors, and do ask on our mailing list for help."