Changeset 2442 for trunk/locker/deploy/bin
- Timestamp:
- Jun 28, 2013, 9:08:30 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/locker/deploy/bin/django
r2441 r2442 35 35 close FASTCGI; 36 36 chmod 0755, "index.fcgi"; 37 38 open README, ">README.txt";39 print README <<EOF;40 This directory contains index.fcgi, a script that serves up your Django site.41 42 To modify your Django project access the files in43 /mit/$user/Scripts/django/$name44 45 Files placed in this directory will be served directly to users without46 being processed by Django.47 48 Static files live in the "static" subdirectory; you should not add things49 there directly but instead place them with the relevant application as you50 normally would, then run "python manage.py collectstatic" from the above51 directory; see <https://docs.djangoproject.com/en/1.5/howto/static-files/>.52 53 -- Scripts Team 2013-06-2854 EOF55 close README;56 chmod 0555, "README.txt";57 37 58 38 open HTACCESS, ">.htaccess"; … … 93 73 } elsif (/Chicago/) { 94 74 $_ =~ s/Chicago/New_York/; 95 } elsif (/^STATIC_URL/) { 96 $_ = "STATIC_URL = '//$USER.$server/$name/static/'"; 97 } elsif (/^STATIC_ROOT/) { 98 $_ = "STATIC_ROOT = '/mit/$USER/web_scripts/$addrend/static/'"; 75 } elsif (/^ADMIN_MEDIA_PREFIX/) { 76 $_ = "ADMIN_MEDIA_PREFIX = '/__scripts/django/media/'"; 99 77 } elsif (/^INSTALLED_APPS/) { 100 78 print NEWSETTINGS "$_\n"; … … 121 99 } elsif (/^#.*admin.autodiscover/) { 122 100 $_ =~ s/^# *//; 123 } elsif (/^ *# url\(r\'\^admin\//) {101 } elsif (/^ *# *\(r\'\^admin\//) { 124 102 $_ =~ s/# *//; 125 103 } … … 131 109 132 110 chdir ".."; 133 134 system(qw{python manage.py collectstatic --noinput}) == 0 or die "\nFailed to collect static files.\n\n";135 111 136 112 print "Initializing your project's SQL database schema...\n";
Note: See TracChangeset
for help on using the changeset viewer.