-
Notifications
You must be signed in to change notification settings - Fork 255
/
djangosettings.py
887 lines (842 loc) · 32.6 KB
/
djangosettings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
# -*- coding: utf-8 -*-
#
# Copyright (C) 2007-2015 by frePPLe bv
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
r"""
Main Django configuration file.
"""
import os
import sys
import pathlib
from django.utils.translation import gettext_lazy as _
try:
DEBUG = "runserver" in sys.argv
except Exception:
DEBUG = False
DEBUG_JS = DEBUG
ADMINS = (
# ('Your Name', '[email protected]'),
)
# Make this unique, and don't share it with anybody.
SECRET_KEY = "%@mzit!i8b*$zc&6oev96=RANDOMSTRING"
# FrePPLe only supports the postgresql database.
# Create additional entries in this dictionary to define scenario schemas.
DATABASES = {
"default": {
"ENGINE": "freppledb.common.postgresql",
# Database name
"NAME": (
"%s0" % os.environ["POSTGRES_DBNAME"]
if "POSTGRES_DBNAME" in os.environ
else "frepple"
),
# Role name when using md5 authentication.
# Leave as an empty string when using peer or
# ident authencation.
"USER": os.environ.get("POSTGRES_USER", "frepple"),
# Role password when using md5 authentication.
# Leave as an empty string when using peer or
# ident authencation.
"PASSWORD": os.environ.get("POSTGRES_PASSWORD", "frepple"),
# When using TCP sockets specify the hostname,
# the ip4 address or the ip6 address here.
# Leave as an empty string to use Unix domain
# socket ("local" lines in pg_hba.conf).
"HOST": os.environ.get("POSTGRES_HOST", ""),
# Specify the port number when using a TCP socket.
"PORT": os.environ.get("POSTGRES_PORT", ""),
"OPTIONS": {},
"CONN_MAX_AGE": 600,
"CONN_HEALTH_CHECKS": True,
"TEST": {
"NAME": (
"test_%s0" % os.environ["POSTGRES_DBNAME"]
if "POSTGRES_DBNAME" in os.environ
else "test_frepple"
), # Database name used when running the test suite.
"FREPPLE_PORT": "127.0.0.1:9002",
},
# The FILEUPLOADFOLDER setting is used by the "import data files" task.
# By default all scenario databases use the same data folder on the server.
# By configuring this setting you can configure a dedicated data folder for each
# scenario database.
"FILEUPLOADFOLDER": os.path.normpath(
os.path.join(FREPPLE_LOGDIR, "data", "default")
),
# Role name for executing custom reports and processing sql data files.
# Make sure this role has properly restricted permissions!
# When left unspecified, SQL statements run with the full read-write
# permissions of the user specified above. Which can be handy, but is not secure.
"SQL_ROLE": "report_role",
"SECRET_WEBTOKEN_KEY": SECRET_KEY,
"FREPPLE_PORT": "127.0.0.1:8002",
},
"scenario1": {
"ENGINE": "freppledb.common.postgresql",
# Database name
"NAME": (
"%s1" % os.environ["POSTGRES_DBNAME"]
if "POSTGRES_DBNAME" in os.environ
else "scenario1"
),
# Role name when using md5 authentication.
# Leave as an empty string when using peer or
# ident authencation.
"USER": os.environ.get("POSTGRES_USER", "frepple"),
# Role password when using md5 authentication.
# Leave as an empty string when using peer or
# ident authencation.
"PASSWORD": os.environ.get("POSTGRES_PASSWORD", "frepple"),
# When using TCP sockets specify the hostname,
# the ip4 address or the ip6 address here.
# Leave as an empty string to use Unix domain
# socket ("local" lines in pg_hba.conf).
"HOST": os.environ.get("POSTGRES_HOST", ""),
# Specify the port number when using a TCP socket.
"PORT": os.environ.get("POSTGRES_PORT", ""),
# Specify the port number when using a TCP socket.
"PORT": "",
"OPTIONS": {},
"CONN_MAX_AGE": 600,
"CONN_HEALTH_CHECKS": True,
"TEST": {
"NAME": (
"test_%s1" % os.environ["POSTGRES_DBNAME"]
if "POSTGRES_DBNAME" in os.environ
else "test_scenario1"
), # Database name used when running the test suite.
"FREPPLE_PORT": "127.0.0.1:9003",
},
# The FILEUPLOADFOLDER setting is used by the "import data files" task.
# By default all scenario databases use the same data folder on the server.
# By configuring this setting you can configure a dedicated data folder for each
# scenario database.
"FILEUPLOADFOLDER": os.path.normpath(
os.path.join(FREPPLE_LOGDIR, "data", "scenario1")
),
# Role name for executing custom reports and processing sql data files.
# Make sure this role has properly restricted permissions!
# When left unspecified, SQL statements run with the full read-write
# permissions of the user specified above. Which can be handy, but is not secure.
"SQL_ROLE": "report_role",
"SECRET_WEBTOKEN_KEY": SECRET_KEY,
"FREPPLE_PORT": "127.0.0.1:8003",
},
"scenario2": {
"ENGINE": "freppledb.common.postgresql",
# Database name
"NAME": (
"%s2" % os.environ["POSTGRES_DBNAME"]
if "POSTGRES_DBNAME" in os.environ
else "scenario2"
),
# Role name when using md5 authentication.
# Leave as an empty string when using peer or
# ident authencation.
"USER": os.environ.get("POSTGRES_USER", "frepple"),
# Role password when using md5 authentication.
# Leave as an empty string when using peer or
# ident authencation.
"PASSWORD": os.environ.get("POSTGRES_PASSWORD", "frepple"),
# When using TCP sockets specify the hostname,
# the ip4 address or the ip6 address here.
# Leave as an empty string to use Unix domain
# socket ("local" lines in pg_hba.conf).
"HOST": os.environ.get("POSTGRES_HOST", ""),
# Specify the port number when using a TCP socket.
"PORT": os.environ.get("POSTGRES_PORT", ""),
"OPTIONS": {},
"CONN_MAX_AGE": 600,
"CONN_HEALTH_CHECKS": True,
"TEST": {
"NAME": (
"test_%s2" % os.environ["POSTGRES_DBNAME"]
if "POSTGRES_DBNAME" in os.environ
else "test_scenario2"
), # Database name used when running the test suite.
"FREPPLE_PORT": "127.0.0.1:9004",
},
# The FILEUPLOADFOLDER setting is used by the "import data files" task.
# By default all scenario databases use the same data folder on the server.
# By configuring this setting you can configure a dedicated data folder for each
# scenario database.
"FILEUPLOADFOLDER": os.path.normpath(
os.path.join(FREPPLE_LOGDIR, "data", "scenario2")
),
# Role name for executing custom reports and processing sql data files.
# Make sure this role has properly restricted permissions!
# When left unspecified, SQL statements run with the full read-write
# permissions of the user specified above. Which can be handy, but is not secure.
"SQL_ROLE": "report_role",
"SECRET_WEBTOKEN_KEY": SECRET_KEY,
"FREPPLE_PORT": "127.0.0.1:8004",
},
"scenario3": {
"ENGINE": "freppledb.common.postgresql",
# Database name
"NAME": (
"%s3" % os.environ["POSTGRES_DBNAME"]
if "POSTGRES_DBNAME" in os.environ
else "scenario3"
),
# Role name when using md5 authentication.
# Leave as an empty string when using peer or
# ident authencation.
"USER": os.environ.get("POSTGRES_USER", "frepple"),
# Role password when using md5 authentication.
# Leave as an empty string when using peer or
# ident authencation.
"PASSWORD": os.environ.get("POSTGRES_PASSWORD", "frepple"),
# When using TCP sockets specify the hostname,
# the ip4 address or the ip6 address here.
# Leave as an empty string to use Unix domain
# socket ("local" lines in pg_hba.conf).
"HOST": os.environ.get("POSTGRES_HOST", ""),
# Specify the port number when using a TCP socket.
"PORT": os.environ.get("POSTGRES_PORT", ""),
# Specify the port number when using a TCP socket.
"PORT": "",
"OPTIONS": {},
"CONN_MAX_AGE": 600,
"CONN_HEALTH_CHECKS": True,
"TEST": {
"NAME": (
"test_%s3" % os.environ["POSTGRES_DBNAME"]
if "POSTGRES_DBNAME" in os.environ
else "test_scenario3"
), # Database name used when running the test suite.
"FREPPLE_PORT": "127.0.0.1:9005",
},
# The FILEUPLOADFOLDER setting is used by the "import data files" task.
# By default all scenario databases use the same data folder on the server.
# By configuring this setting you can configure a dedicated data folder for each
# scenario database.
"FILEUPLOADFOLDER": os.path.normpath(
os.path.join(FREPPLE_LOGDIR, "data", "scenario3")
),
# Role name for executing custom reports and processing sql data files.
# Make sure this role has properly restricted permissions!
# When left unspecified, SQL statements run with the full read-write
# permissions of the user specified above. Which can be handy, but is not secure.
"SQL_ROLE": "report_role",
"SECRET_WEBTOKEN_KEY": SECRET_KEY,
"FREPPLE_PORT": "127.0.0.1:8005",
},
}
LANGUAGE_CODE = "en"
# Google analytics code to report usage statistics to.
# The value None disables this feature.
GOOGLE_ANALYTICS = None
# Installed applications.
# The order is important: urls, templates and menus of the earlier entries
# take precedence over and override later entries.
#
# IMPORTANT: the apps screen updates this section of the file.
# So, please don't change the layout of this section: just keep a separate
# line for each app.
# ================= START UPDATED BLOCK =================
INSTALLED_APPS = (
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.messages",
"django.contrib.staticfiles",
"freppledb.boot",
# Add any project specific apps here
# "freppledb.odoo",
# "freppledb.erpconnection",
"freppledb.wizard",
"freppledb.input",
"freppledb.forecast",
"freppledb.output",
"freppledb.metrics",
"freppledb.execute",
"freppledb.webservice",
"freppledb.common",
"django_filters",
"rest_framework",
"django.contrib.admin",
"freppledb.archive",
# The next two apps allow users to run their own SQL statements on
# the database, using the SQL_ROLE configured above.
"freppledb.reportmanager",
"freppledb.executesql",
"freppledb.debugreport",
)
# ================= END UPDATED BLOCK =================
# This setting contains a list containing:
# - names of installable apps.
# - a Path object pointing to a folder where installable apps are found.
INSTALLABLE_APPS = (
"freppledb.odoo",
"freppledb.forecast",
"freppledb.mlforecast",
"freppledb.wizard",
"freppledb.metrics",
"freppledb.reportmanager",
"freppledb.executesql",
"freppledb.debugreport",
pathlib.Path(os.path.join(FREPPLE_APP, "apps")),
pathlib.Path(os.path.join(FREPPLE_APP, "freppleapps")),
pathlib.Path(os.path.join(FREPPLE_HOME, "apps")),
pathlib.Path(os.path.join(FREPPLE_HOME, "freppleapps")),
pathlib.Path(os.path.join(FREPPLE_CONFIGDIR, "apps")),
pathlib.Path(os.path.join(FREPPLE_CONFIGDIR, "freppleapps")),
pathlib.Path(os.path.join(FREPPLE_LOGDIR, "apps")),
pathlib.Path(os.path.join(FREPPLE_LOGDIR, "freppleapps")),
)
# Odoo connection parameters in this file they override the ones set in the database parameters table.
# Configuring them here is more secure and eases automated deployments.
ODOO_URL = { i : os.environ.get("ODOO_URL", None) for i in DATABASES.keys()}
ODOO_DB = { i : os.environ.get("ODOO_DB", None) for i in DATABASES.keys()}
ODOO_USER = { i : os.environ.get("ODOO_USER", None) for i in DATABASES.keys()}
ODOO_COMPANY = { i : os.environ.get("ODOO_COMPANY", None) for i in DATABASES.keys()}
ODOO_SINGLECOMPANY = { i : os.environ.get("ODOO_SINGLECOMPANY", None) for i in DATABASES.keys()}
ODOO_PASSWORDS = { i : os.environ.get("ODOO_PASSWORD", None) for i in DATABASES.keys()}
ODOO_LANGUAGE = { i : os.environ.get("ODOO_LANGUAGE", None) for i in DATABASES.keys()}
# If passwords are set in this file they will be used instead of the ones set in the database parameters table
OPENBRAVO_PASSWORDS = { i : os.environ.get("OPENBRAVO_PASSWORD", "") for i in DATABASES.keys()}
if "FREPPLE_TIME_ZONE" in os.environ:
# Choices can be found here http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
TIME_ZONE = os.environ["FREPPLE_TIME_ZONE"]
if not TIME_ZONE:
# A value of None will cause Django to use the same timezone as the operating system.
TIME_ZONE = None
else:
# Retrieve the server time zone and use it for the database
# we need to convert that string into iana/olson format using package tzlocal
try:
from tzlocal import get_localzone
TIME_ZONE = str(get_localzone())
except Exception:
TIME_ZONE = "Europe/Brussels"
# Tests have to be done in UTC time zone to guarantuee portable results!
if not hasattr(sys, "argv") or "test" in sys.argv or "FREPPLE_TEST" in os.environ:
TIME_ZONE = "UTC"
# We provide 3 options for formatting dates (and you always add your own).
# - month-day-year: US format
# - day-month-year: European format
# - year-month-day: international format. This is the default
# As option you can choose to hide the hour, minutes and seconds.
DATE_STYLE = os.environ.get("FREPPLE_DATE_STYLE", "year-month-day")
DATE_STYLE_WITH_HOURS = (
os.environ.get("FREPPLE_DATE_STYLE_WITH_HOURS", "false").lower() == "true"
)
if DATE_STYLE == "month-day-year":
# Option 1: US style
DATE_FORMAT = (
# see https://docs.djangoproject.com/en/3.2/ref/templates/builtins/#std-templatefilter-date
"m/d/Y"
)
DATETIME_FORMAT = (
# see https://docs.djangoproject.com/en/3.2/ref/templates/builtins/#std-templatefilter-date
"m/d/Y H:i:s"
if DATE_STYLE_WITH_HOURS
else "m/d/Y"
)
DATE_FORMAT_JS = (
# see https://bootstrap-datepicker.readthedocs.io/en/latest/options.html#format
"MM/DD/YYYY"
)
DATETIME_FORMAT_JS = (
# see https://momentjs.com/docs/#/displaying/
"MM-DD-YYYY HH:mm:ss"
if DATE_STYLE_WITH_HOURS
else "MM-DD-YYYY"
)
DATE_INPUT_FORMATS = [
# See https://docs.djangoproject.com/en/3.2/ref/settings/#std-setting-DATE_FORMAT
"%m/%d/%Y",
"%m/%d/%y",
"%m-%d-%Y",
"%m-%d-%y",
"%m.%d.%Y",
"%m.%d.%y",
"%b %d %Y",
"%b %d, %Y",
"%d %b %Y",
"%d %b %Y",
"%B %d %Y",
"%B %d, %Y",
"%d %B %Y",
"%d %B, %Y",
]
DATETIME_INPUT_FORMATS = [
# See https://docs.djangoproject.com/en/3.2/ref/settings/#std-setting-DATETIME_FORMAT
"%m/%d/%Y %H:%M:%S",
"%m-%d-%Y %H:%M:%S",
"%m-%d-%Y %H:%M",
"%m/%d/%Y %H:%M:%S",
"%m/%d/%Y %H:%M",
"%m/%d/%y %H:%M:%S",
"%m/%d/%y %H:%M",
"%m.%d.%Y %H:%M:%S",
"%m.%d.%Y %H:%M",
"%m.%d.%y %H:%M:%S",
"%m.%d.%y %H:%M",
]
elif DATE_STYLE == "day-month-year":
# Option 2: European style
DATE_FORMAT = (
# see https://docs.djangoproject.com/en/3.2/ref/templates/builtins/#std-templatefilter-date
"d-m-Y"
)
DATETIME_FORMAT = (
# see https://docs.djangoproject.com/en/3.2/ref/templates/builtins/#std-templatefilter-date
"d-m-Y H:i:s"
if DATE_STYLE_WITH_HOURS
else "d-m-Y"
)
DATE_FORMAT_JS = (
# see https://bootstrap-datepicker.readthedocs.io/en/latest/options.html#format
"DD-MM-YYYY"
)
DATETIME_FORMAT_JS = (
# see https://momentjs.com/docs/#/displaying/
"DD-MM-YYYY HH:mm:ss"
if DATE_STYLE_WITH_HOURS
else "DD-MM-YYYY"
)
DATE_INPUT_FORMATS = [
# See https://docs.djangoproject.com/en/3.2/ref/settings/#std-setting-DATE_FORMAT
"%d-%m-%Y",
"%d-%m-%y",
"%d/%m/%Y",
"%d/%m/%y",
"%d.%m.%Y",
"%d.%m.%y",
"%b %d %Y",
"%b %d, %Y",
"%d %b %Y",
"%d %b, %Y",
"%B %d %Y",
"%B %d, %Y",
"%d %B %Y",
"%d %B, %Y",
]
DATETIME_INPUT_FORMATS = [
# See https://docs.djangoproject.com/en/3.2/ref/settings/#std-setting-DATETIME_FORMAT
"%d-%m-%Y %H:%M:%S",
"%d-%m-%Y %H:%M",
"%d/%m/%y %H:%M:%S",
"%d/%m/%y %H:%M",
"%d/%m/%Y %H:%M:%S",
"%f/%m/%Y %H:%M",
"%d/%m/%y %H:%M:%S",
"%d/%m/%y %H:%M",
"%d.%m.%Y %H:%M:%S",
"%d.%m.%Y %H:%M",
"%d.%m.%y %H:%M:%S",
"%d.%m.%y %H:%M",
]
else:
# Option 3: International style, default
DATE_FORMAT = (
# see https://docs.djangoproject.com/en/3.2/ref/templates/builtins/#std-templatefilter-date
"Y-m-d"
)
DATETIME_FORMAT = (
# see https://docs.djangoproject.com/en/3.2/ref/templates/builtins/#std-templatefilter-date
"Y-m-d H:i:s"
if DATE_STYLE_WITH_HOURS
else "Y-m-d"
)
DATE_FORMAT_JS = (
# see https://bootstrap-datepicker.readthedocs.io/en/latest/options.html#format
"YYYY-MM-DD"
)
DATETIME_FORMAT_JS = (
# see https://momentjs.com/docs/#/displaying/
"YYYY-MM-DD HH:mm:ss"
if DATE_STYLE_WITH_HOURS
else "YYYY-MM-DD"
)
DATE_INPUT_FORMATS = [
# See https://docs.djangoproject.com/en/3.2/ref/settings/#std-setting-DATE_FORMAT
"%Y-%m-%d",
"%y-%m-%d",
"%Y/%m/%d",
"%y/%m/%d",
"%Y.%m.%d",
"%y.%m.%d",
"%b %d %Y",
"%b %d, %Y",
"%d %b %Y",
"%d %b %Y",
"%B %d %Y",
"%B %d, %Y",
"%d %B %Y",
"%d %B, %Y",
]
DATETIME_INPUT_FORMATS = [
# See https://docs.djangoproject.com/en/3.2/ref/settings/#std-setting-DATETIME_FORMAT
"%Y-%m-%d %H:%M:%S",
"%Y-%m-%d %H:%M",
"%y-%m-%d %H:%M:%S",
"%y-%m-%d %H:%M",
"%Y/%m/%d %H:%M:%S",
"%Y/%m/%d %H:%M",
"%y/%m/%d %H:%M:%S",
"%y/%m/%d %H:%M",
"%Y.%m.%d %H:%M:%S",
"%Y.%m.%d %H:%M",
"%y.%m.%d %H:%M:%S",
"%y.%m.%d %H:%M",
]
# Supported language codes, sorted by language code.
# Language names and codes should match the ones in Django.
# You can see the list supported by Django at:
# https://github.com/django/django/blob/master/django/conf/global_settings.py
LANGUAGES = (
("en", _("English")),
("fr", _("French")),
("de", _("German")),
("he", _("Hebrew")),
("hr", _("Croatian")),
("it", _("Italian")),
("ja", _("Japanese")),
("nl", _("Dutch")),
("pt", _("Portuguese")),
("pt-br", _("Brazilian Portuguese")),
("ru", _("Russian")),
("es", _("Spanish")),
("zh-hans", _("Simplified Chinese")),
("zh-hant", _("Traditional Chinese")),
("uk", _("Ukrainian")),
)
# The remember-me checkbox on the login page allows to keep a session cookie
# active in your browser. The session will expire after the age configured
# in the setting below (epxressed in seconds).
# Set the value to 0 to force users to log in for every browser session.
SESSION_COOKIE_AGE = 3600 * 24 * 3 # 3 days
# Users are automatically logged out after this period of inactivity
SESSION_LOGOUT_IDLE_TIME = 60 * 24 # minutes
MIDDLEWARE = (
"django.contrib.sessions.middleware.SessionMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
# Uncomment the next line to automatically log on as the admin user,
# which can be useful for development or for demo models.
# "freppledb.common.middleware.AutoLoginAsAdminUser",
"freppledb.common.middleware.MultiDBMiddleware",
# Uncomment the next line to only allow a list of IP addresses
# to access the application (see variable ALLOWED_IPs) below
# "freppledb.common.middleware.AllowedIpMiddleware",
# Optional: The following middleware allows authentication with HTTP headers
"freppledb.common.middleware.HTTPAuthenticationMiddleware",
"freppledb.common.middleware.LocaleMiddleware",
"django.middleware.common.CommonMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
)
# Variable ALLOWED_IPS defines a list of IP adresses allowed to access the application
# AllowedIpMiddleware needs to be active. /24 mask IP address is supported.
# ALLOWED_IPS = [
# "127.0.0.1",
# ]
# Custom attribute fields in the database
# After each change of this setting, the following commands MUST be
# executed to create the fields in the database(s).
# frepplectl makemigrations
# frepplectl migrate OR frepplectl migrate --database DATABASE
#
# The commands will create migration files to keep track of the changes.
# You MUST use the above commands and the generated migration scripts. Manually
# changing the database schema will work in simple cases, but will get you
# in trouble in the long run!
# You'll need write permissions in the folder where these are stored.
#
# See https://docs.djangoproject.com/en/1.8/topics/migrations/ for the
# details on the migration files. For complex changes to the attributes
# an administrator may need to edit, delete or extend these files.
#
# Supported field types are 'string', 'boolean', 'number', 'integer',
# 'date', 'datetime', 'duration' and 'time'.
# Example:
# ATTRIBUTES = [
# ('freppledb.input.models.Item', [
# ('attribute1', ugettext('attribute_1'), 'string'),
# ('attribute2', ugettext('attribute_2'), 'boolean'),
# ('attribute3', ugettext('attribute_3'), 'date'),
# ('attribute4', ugettext('attribute_4'), 'datetime'),
# ('attribute5', ugettext('attribute_5'), 'number'),
# ]),
# ('freppledb.input.models.Operation', [
# ('attribute1', ugettext('attribute_1'), 'string'),
# ])
# ]
ATTRIBUTES = []
# Memory cache
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
}
}
LOGGING = {
"version": 1,
"disable_existing_loggers": True,
"filters": {"require_debug_false": {"()": "django.utils.log.RequireDebugFalse"}},
"formatters": {
"verbose": {
"format": "%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s"
},
"simple": {"format": "%(levelname)s %(message)s"},
},
"handlers": {
"null": {"level": "DEBUG", "class": "logging.NullHandler"},
"console": {
"level": "DEBUG",
"class": "logging.StreamHandler",
"formatter": "simple",
},
"mail_admins": {
"level": "CRITICAL",
"filters": ["require_debug_false"],
"class": "django.utils.log.AdminEmailHandler",
},
},
"loggers": {
# A handler to log all SQL queries.
# The setting "DEBUG" also needs to be set to True higher up in this file.
# "django.db.backends": {
# "handlers": ["console"],
# "level": "DEBUG",
# "propagate": False,
# },
"django": {"handlers": ["console"], "level": "INFO"},
"freppledb": {"handlers": ["console"], "level": "INFO"},
"freppleapps": {"handlers": ["console"], "level": "INFO"},
},
}
# Maximum allowed memory size for the planning engine. Only used on Linux!
MAXMEMORYSIZE = None # limit in MB, minimum around 230, use None for unlimited
# Maximum allowed memory size for the planning engine. Only used on Linux!
MAXCPUTIME = None # limit in seconds, use None for unlimited
# Maximum allowed storage.
# The storage counts database storage, data files, engine log files, database dump files, plan export files.
MAXSTORAGE = None # limit in MB, use None for unlimited.
# Max total log files size in MB
# If the limit is reached we automatically delete the oldest log files.
MAXTOTALLOGFILESIZE = 200
# Specify number of objects we are allowed to cache and the number of
# threads we create to write changed objects
CACHE_MAXIMUM = 1000000
CACHE_THREADS = 1
# A list of available user interface themes.
# If multiple themes are configured in this list, the user's can change their
# preferences among the ones listed here.
# If the list contains only a single value, the preferences screen will not
# display users an option to choose the theme.
THEMES = os.environ.get(
"FREPPLE_THEMES", "earth grass lemon odoo openbravo orange snow strawberry water"
).split()
# A default user-group to which new users are automatically added.
# If this setting is left unspecified or when the group has no assigned permissions,
# then new users will be marked super-users by default.
DEFAULT_USER_GROUP = None
# The default user interface theme
DEFAULT_THEME = os.environ.get("FREPPLE_DEFAULT_THEME", "earth")
if DEFAULT_THEME not in THEMES:
DEFAULT_THEME = THEMES[0]
# The default number of records to pull from the server as a page
DEFAULT_PAGESIZE = 100
# Configuration of the default dashboard
DEFAULT_DASHBOARD = [
{
"rowname": _("execute"),
"cols": [
{
"width": 6,
"widgets": [
("execute", {}),
],
},
{
"width": 6,
"widgets": [
("executegroup", {}),
],
},
],
},
{
"rowname": _("sales"),
"cols": [
{
"width": 6,
"widgets": [
("forecast", {"history": 36, "future": 12}),
# (
# "analysis_demand_problems",
# {"top": 20, "orderby": "latedemandvalue"},
# ),
# ("outliers", {"limit": 20}),
],
},
{
"width": 3,
"widgets": [
# ("demand_alerts", {}),
("delivery_performance", {"green": 90, "yellow": 80}),
],
},
{
"width": 3,
"widgets": [
("forecast_error", {"history": 12}),
# ("archived_demand", {"history": 12}),
],
},
],
},
{
"rowname": _("purchasing"),
"cols": [
{
"width": 8,
"widgets": [
("purchase_orders", {"fence1": 7, "fence2": 30}),
# ("purchase_queue",{"limit":20}),
# ("purchase_order_analysis", {"limit": 20}),
],
},
{
"width": 4,
"widgets": [
# ("archived_purchase_order", {"history": 12}),
("inventory_by_location", {"limit": 5}),
# ("inventory_by_item", {"limit": 10}),
],
},
],
},
{
"rowname": _("manufacturing"),
"cols": [
{
"width": 8,
"widgets": [
("manufacturing_orders", {"fence1": 7, "fence2": 30}),
# ("resource_queue",{"limit":20}),
],
},
{
"width": 4,
"widgets": [
# ("capacity_alerts", {}),
("resource_utilization", {"limit": 5, "medium": 80, "high": 90}),
],
},
],
},
{
"rowname": _("distribution"),
"cols": [
{
"width": 8,
"widgets": [
("distribution_orders", {"fence1": 7, "fence2": 30}),
# ("shipping_queue",{"limit":20}),
# ("archived_buffer", {"history": 12}),
],
},
{
"width": 4,
"widgets": [
("archived_buffer", {"history": 12}),
],
},
],
},
]
AUTH_PASSWORD_VALIDATORS = [
{
"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator"
},
{
"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator",
"OPTIONS": {"min_length": 8},
},
{"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator"},
{"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator"},
]
# Configuration of SMTP mail server
EMAIL_USE_TLS = os.environ.get("FREPPLE_EMAIL_USE_TLS", "true").lower() == "true"
DEFAULT_FROM_EMAIL = os.environ.get(
"FREPPLE_DEFAULT_FROM_EMAIL", "[email protected]"
)
SERVER_EMAIL = os.environ.get("FREPPLE_SERVER_EMAIL", "[email protected]")
EMAIL_HOST_USER = os.environ.get("FREPPLE_EMAIL_HOST_USER", "[email protected]")
EMAIL_HOST_PASSWORD = os.environ.get("FREPPLE_EMAIL_HOST_PASSWORD", "frePPLeIsTheBest")
EMAIL_HOST = os.environ.get("FREPPLE_EMAIL_HOST", "")
if not EMAIL_HOST:
EMAIL_HOST = None
EMAIL_PORT = int(os.environ.get("FREPPLE_EMAIL_PORT", 25))
EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend"
# ADVANCED HTTP SECURITY SETTING: Clickjacking security http headers
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
# Default: allow content from same domain
CONTENT_SECURITY_POLICY = os.environ.get(
"FREPPLE_CONTENT_SECURITY_POLICY", "frame-ancestors 'self'"
)
X_FRAME_OPTIONS = os.environ.get("FREPPLE_X_FRAME_OPTIONS", "SAMEORIGIN")
CSRF_COOKIE_SAMESITE = os.environ.get("FREPPLE_CSRF_COOKIE_SAMESITE", "lax")
# Alternative: prohibit embedding in any frame
# CONTENT_SECURITY_POLICY = "frame-ancestors 'none'"
# X_FRAME_OPTIONS = "DENY"
# Alternative: allow embedding in a specific domain
# CONTENT_SECURITY_POLICY = "frame-ancestors 'self' mydomain.com;"
# X_FRAME_OPTIONS = None
# CSRF_COOKIE_SAMESITE = "none"
# ADVANCED HTTP SECURITY SETTING: Secure cookies
SESSION_COOKIE_SECURE = (
os.environ.get("FREPPLE_SESSION_COOKIE_SECURE", "false").lower() == "true"
)
CSRF_COOKIE_SECURE = (
os.environ.get("FREPPLE_CSRF_COOKIE_SECURE", "false").lower() == "true"
)
# ADVANCED HTTP SECURITY SETTING: When using https and a proxy server in front of frepple.
# CSRF_TRUSTED_ORIGINS = ["https://yourserver", "https://*.yourdomain.com"]
# SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https")
CSRF_TRUSTED_ORIGINS = os.environ.get("FREPPLE_CSRF_TRUSTED_ORIGINS", "").split()
SECURE_PROXY_SSL_HEADER = os.environ.get("FREPPLE_SECURE_PROXY_SSL_HEADER", "").split()
# Configuration of the ftp/sftp/ftps server where to upload reports
# Note that for SFTP protocol, the host needs to be defined
# in the known_hosts file
# These variables can either be a string if common to all scenarios
# or a dictionary if they vary per scenario (see FTP_FOLDER EXAMPLE)
FTP_PROTOCOL = os.environ.get(
"FREPPLE_FTP_PROTOCOL", "SFTP"
) # supported protocols are SFTP, FTPS and FTP (unsecure)
FTP_HOST = os.environ.get("FREPPLE_FTP_HOST", "")
FTP_PORT = int(os.environ.get("FREPPLE_FTP_PORT", 22))
FTP_USER = os.environ.get("FREPPLE_FTP_USER", "")
FTP_PASSWORD = os.environ.get("FREPPLE_FTP_PASSWORD", "")
FTP_FOLDER = {
"default": None,
"scenario1": None,
"scenario2": None,
"scenario3": None,
} # folder where the files should be uploaded on the remote server
# Port number when not using Apache
PORT = 8000
# Browser to test with selenium
SELENIUM_TESTS = "chrome"
SELENIUM_HEADLESS = True