SuperAGI

Форк
0
/
alembic.ini 
109 строк · 3.3 Кб
1
# A generic, single database configuration.
2

3
[alembic]
4
# path to migration scripts
5
script_location = migrations
6

7
# template used to generate migration file names; The default value is %%(rev)s_%%(slug)s
8
# Uncomment the line below if you want the files to be prepended with date and time
9
# see https://alembic.sqlalchemy.org/en/latest/tutorial.html#editing-the-ini-file
10
# for all available tokens
11
# file_template = %%(year)d_%%(month).2d_%%(day).2d_%%(hour).2d%%(minute).2d-%%(rev)s_%%(slug)s
12

13
# sys.path path, will be prepended to sys.path if present.
14
# defaults to the current working directory.
15
prepend_sys_path = .
16

17
# timezone to use when rendering the date within the migration file
18
# as well as the filename.
19
# If specified, requires the python-dateutil library that can be
20
# installed by adding `alembic[tz]` to the pip requirements
21
# string value is passed to dateutil.tz.gettz()
22
# leave blank for localtime
23
# timezone =
24

25
# max length of characters to apply to the
26
# "slug" field
27
# truncate_slug_length = 40
28

29
# set to 'true' to run the environment during
30
# the 'revision' command, regardless of autogenerate
31
# revision_environment = false
32

33
# set to 'true' to allow .pyc and .pyo files without
34
# a source .py file to be detected as revisions in the
35
# versions/ directory
36
# sourceless = false
37

38
# version location specification; This defaults
39
# to migrations/versions.  When using multiple version
40
# directories, initial revisions must be specified with --version-path.
41
# The path separator used here should be the separator specified by "version_path_separator" below.
42
# version_locations = %(here)s/bar:%(here)s/bat:migrations/versions
43

44
# version path separator; As mentioned above, this is the character used to split
45
# version_locations. The default within new alembic.ini files is "os", which uses os.pathsep.
46
# If this key is omitted entirely, it falls back to the legacy behavior of splitting on spaces and/or commas.
47
# Valid values for version_path_separator are:
48
#
49
# version_path_separator = :
50
# version_path_separator = ;
51
# version_path_separator = space
52
version_path_separator = os  # Use os.pathsep. Default configuration used for new projects.
53

54
# set to 'true' to search source files recursively
55
# in each "version_locations" directory
56
# new in Alembic version 1.10
57
# recursive_version_locations = false
58

59
# the output encoding used when revision files
60
# are written from script.py.mako
61
# output_encoding = utf-8
62

63
sqlalchemy.url = postgresql://superagi:password@super__postgres:5432/super_agi_main
64

65
[post_write_hooks]
66
# post_write_hooks defines scripts or Python functions that are run
67
# on newly generated revision scripts.  See the documentation for further
68
# detail and examples
69

70
# format using "black" - use the console_scripts runner, against the "black" entrypoint
71
# hooks = black
72
# black.type = console_scripts
73
# black.entrypoint = black
74
# black.options = -l 79 REVISION_SCRIPT_FILENAME
75

76
# Logging configuration
77
[loggers]
78
keys = root,sqlalchemy,alembic
79

80
[handlers]
81
keys = console
82

83
[formatters]
84
keys = generic
85

86
[logger_root]
87
level = WARN
88
handlers = console
89
qualname =
90

91
[logger_sqlalchemy]
92
level = WARN
93
handlers =
94
qualname = sqlalchemy.engine
95

96
[logger_alembic]
97
level = INFO
98
handlers =
99
qualname = alembic
100

101
[handler_console]
102
class = StreamHandler
103
args = (sys.stderr,)
104
level = NOTSET
105
formatter = generic
106

107
[formatter_generic]
108
format = %(levelname)-5.5s [%(name)s] %(message)s
109
datefmt = %H:%M:%S
110

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.