Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TedImg - img.tedomum.net
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TeDomum
TedImg - img.tedomum.net
Commits
d3b3bfd4
Commit
d3b3bfd4
authored
Dec 07, 2015
by
kaiyou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sane defaults for storage path
parent
90669b98
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tedimg/__init__.py
tedimg/__init__.py
+2
-2
No files found.
tedimg/__init__.py
View file @
d3b3bfd4
...
...
@@ -9,8 +9,8 @@ app.config.update(
SITE_NAME
=
os
.
environ
.
get
(
"SITE_NAME"
,
"TedImg"
),
SOURCE_URL
=
"https://git.tedomum.net/kaiyou/tedimg"
,
HELP_URL
=
"https://git.tedomum.net/kaiyou/tedimg"
,
FULL_STORAGE
=
os
.
environ
.
get
(
"FULL_STORAGE"
,
"/
tmp/images
"
),
THUMB_STORAGE
=
os
.
environ
.
get
(
"THUMB_STORAGE"
,
"/
tmp/images
/thumb"
),
FULL_STORAGE
=
os
.
environ
.
get
(
"FULL_STORAGE"
,
"/
data
"
),
THUMB_STORAGE
=
os
.
environ
.
get
(
"THUMB_STORAGE"
,
"/
data
/thumb"
),
FULL_WEB
=
os
.
environ
.
get
(
"FULL_WEB"
,
"images"
),
THUMB_WEB
=
os
.
environ
.
get
(
"THUMB_WEB"
,
"images/thumb"
),
THUMB_SIZE
=
100
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment