fork(2) download
  1. #!/bin/bash
  2. s="WSGI_APPLICATION = 'wsgi.application'
  3.  
  4. # Database
  5.  
  6. from . import database
  7.  
  8. DATABASES = {
  9. 'default': database.config()
  10. }"
  11. sed '/^DATABASES = {/,/^}$/d' <<< "$s"
Success #stdin #stdout 0s 19632KB
stdin
Standard input is empty
stdout
WSGI_APPLICATION = 'wsgi.application'

# Database

from . import database