Parcourir la source

Make vpn an extra app

Documents how to enable it.
Jocelyn Delande il y a 9 ans
Parent
commit
1248339286
2 fichiers modifiés avec 20 ajouts et 1 suppressions
  1. 20 0
      README.md
  2. 0 1
      coin/settings.py

+ 20 - 0
README.md

@@ -245,6 +245,26 @@ Then  make a copy of the template file (and customize it) at
 
 
 Good to go :-)
 Good to go :-)
 
 
+Using optional apps
+-------------------
+
+Some apps are not enabled by default :
+
+- *coin.vpn*: Management of VPN subscription and credentials
+
+You can enable them using the `EXTRA_INSTALLED_APPS` setting. Ex:
+
+    EXTRA_INSTALLED_APPS = (
+        coin.vpn',
+    ]
+
+If you enable an extra-app after initial installation, make sure to sync database :
+
+    ./manage.py migrate
+
+*nb: extra apps are loaded after the builtin apps.*
+
+
 Settings
 Settings
 ========
 ========
 
 

+ 0 - 1
coin/settings.py

@@ -162,7 +162,6 @@ INSTALLED_APPS = (
     'coin.resources',
     'coin.resources',
     'coin.reverse_dns',
     'coin.reverse_dns',
     'coin.configuration',
     'coin.configuration',
-    'vpn',
     'coin.isp_database',
     'coin.isp_database',
     'simple_dsl'
     'simple_dsl'
 )
 )