source: pdfimageplugin/0.11/pdfimg/README.txt

Last change on this file was 11310, checked in by ursaw, 12 years ago

new keyword "file:" for file in local filesystem, TODO set a prepath and external pre-URL as Options

  • Property svn:mime-type set to text/plain
File size: 957 bytes
Line 
1
2
3== Installation ==
4# trac als DEB installiert,
5apt-get install trac python-mysqldb
6
7
8
9==== installieren ====
10
11trac-admin /opt/tracenv initenv
12trac-admin /opt/tracenv permission add anonymous TRAC_ADMIN
13
14
15==== alles neu aufsetzen ====
16rm -rf /opt/tracenv
17trac-admin /opt/tracenv initenv DEVTRAC sqlite:db/trac.db  svn /dev/null
18trac-admin /opt/tracenv permission add anonymous TRAC_ADMIN
19touch /opt/tracenv/htdocs/your_project_logo.png
20
21# set logging
22#sed 's/^log_type\ =\ none/log_type\ =\ stderr/g' /opt/tracenv/conf/trac.ini > /tmp/tracfarm_xslt_tmp && cp /tmp/tracfarm_xslt_tmp /opt/tracenv/conf/trac.ini
23
24# server starten
25tracd -p 8000  /opt/tracenv -r -s 
26
27==== config ===
28[trac]
29auto_reload = true
30;
31== starten ==
32
33tracd -p 8000  /opt/tracenv -r -s
34
35
36
37== Development ==
38
39cd /path/to/plugin/src
40python setup.py develop --multi-version --exclude-scripts --install-dir /path/to/projenv/plugins
41
42# python setup.py develop -mxd /opt/tracenv/plugins
43
Note: See TracBrowser for help on using the repository browser.