blob: c2f2e7e0eeb91934fc5f6477b2707e0d48918c3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
export APP="mandible"
export DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) ## you may replace this with hardcoded path
export LOG=$DIR/logs/
export PORT=8087
export IP=127.0.0.1
export STATIC_DIR=$DIR/static
export IMGUR_GO_CONF=$DIR/config/conf.json
export UPLOAD_DIR=$DIR/files
export UPLOAD_URL=https://i.iamfabulous.de
export ORIGIN_URL=https://images.iamfabulous.de
|