I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 4ae84aa9 authored by str4d's avatar str4d
Browse files

Moved setup, translation config files into subdir

parent 5816bafb
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
. ./translation.vars . ./etc/translation.vars
if [ $# -ge 1 ] if [ $# -ge 1 ]
then then
......
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
PROJECT=I2P PROJECT=I2P
VERSION=website VERSION=website
BABELCFG=babel.cfg BABELCFG=etc/babel.cfg
POTDIR=pots POTDIR=pots
PROJDIR=i2p2www PROJDIR=i2p2www
TRANSDIR=$PROJDIR/translations TRANSDIR=$PROJDIR/translations
#!/bin/sh #!/bin/sh
. ./translation.vars . ./etc/translation.vars
if [ ! -e $POTDIR ]; then if [ ! -e $POTDIR ]; then
mkdir $POTDIR mkdir $POTDIR
......
#!/bin/sh #!/bin/sh
. ./translation.vars . ./etc/translation.vars
if [ $# -ge 1 ] if [ $# -ge 1 ]
then then
......
#!/bin/sh #!/bin/sh
set -e set -e
. ./project.vars . ./etc/project.vars
if [ ! $venv ]; then if [ ! $venv ]; then
echo "ERROR: virtualenv not found!" >&2 echo "ERROR: virtualenv not found!" >&2
...@@ -10,7 +10,7 @@ else ...@@ -10,7 +10,7 @@ else
fi fi
. $venv_dir/bin/activate . $venv_dir/bin/activate
pip install -r reqs.txt pip install -r etc/reqs.txt
# Apply multi-domain patch to Flask-Babel # Apply multi-domain patch to Flask-Babel
patch -p0 <multi-domain.patch patch -p0 <etc/multi-domain.patch
fi fi
#!/bin/sh #!/bin/sh
. ./translation.vars . ./etc/translation.vars
if [ $# -ge 1 ] if [ $# -ge 1 ]
then then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment