|
@@ -17,6 +17,10 @@ We use django framework. Install it from requirements with pip:
|
|
|
|
|
|
$ pip install -r requirements/base.txt
|
|
|
|
|
|
+For development, install `dev.txt` requirements too:
|
|
|
+
|
|
|
+ $ pip install -r requirements/base.txt -r requirements/dev.txt
|
|
|
+
|
|
|
Set up configuration
|
|
|
====================
|
|
|
|
|
@@ -30,6 +34,7 @@ following this example:
|
|
|
SITE_URL="http://example.tld"
|
|
|
|
|
|
But theses are optional settings for testing.
|
|
|
+That needs to be set only if someone wants to receive notifications on each new contrib.
|
|
|
|
|
|
Run development server
|
|
|
======================
|
|
@@ -55,23 +60,3 @@ Drop the database
|
|
|
$ rm db.sqlite3
|
|
|
|
|
|
What else ?
|
|
|
-
|
|
|
-Customizing appearance
|
|
|
-======================
|
|
|
-
|
|
|
-Wether you like or not balloons, you may want to override some templates and/or
|
|
|
-static files.
|
|
|
-
|
|
|
-You can mention a `CUSTOMIZATION_DIR` as environ variable. In that dir, you can
|
|
|
-create *assets* and *views* subdirs, containing files with the name of the
|
|
|
-original files you want to override from default *assets* and *views*.
|
|
|
-
|
|
|
-For example to override only *main.css* and *base.tpl*, you would set
|
|
|
-`CUSTOMIZATION_DIR=/home/alice/my-fancy-isp-theme` and use the following directory
|
|
|
-layout :
|
|
|
-
|
|
|
- /home/alice/my-fancy-isp-theme/
|
|
|
- ├── assets
|
|
|
- │ └── main.css
|
|
|
- └── views
|
|
|
- └── base.tpl
|