mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-08 23:32:40 +02:00
feat: integrate Stripe for page purchases and reconciliation tasks
This commit is contained in:
parent
17642493eb
commit
a9fd45844d
31 changed files with 1948 additions and 166 deletions
|
|
@ -1,9 +1,10 @@
|
|||
import datetime
|
||||
|
||||
# TODO: move these to config file
|
||||
MAX_SLIDES = 5
|
||||
FPS = 30
|
||||
DEFAULT_DURATION_IN_FRAMES = 300
|
||||
from app.config import config as app_config
|
||||
|
||||
MAX_SLIDES = app_config.VIDEO_PRESENTATION_MAX_SLIDES
|
||||
FPS = app_config.VIDEO_PRESENTATION_FPS
|
||||
DEFAULT_DURATION_IN_FRAMES = app_config.VIDEO_PRESENTATION_DEFAULT_DURATION_IN_FRAMES
|
||||
|
||||
THEME_PRESETS = [
|
||||
"TERRA",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue