-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env
28 lines (28 loc) · 1.43 KB
/
.env
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
# This is an absolute path to the location of a SQLite database where the metadata will be extracted from
SQLITE_LOCATION=
# Either Public or Internal
VISIBILITY=Internal
# This is an absolute path to the output folder of the generated files
# Note that this crate will always create a subfolder 'generated' of the specified folder
OUTPUT_DIR=
# Output dir to generated android Room entities. Leave NONE if you don't use Android.
OUTPUT_DIR_ANDROID=NONE
# When true, the generated swift files will be formatted by https://github.com/nicklockwood/SwiftFormat
USE_SWIFTFORMAT=true
# When true, the generated swift files will be autocorrected by https://github.com/realm/SwiftLint
USE_SWIFTLINT=true
# When true, all non-primary properties are declared as 'let' (everything is let by default)
ALL_IMMUTABLE=false
# Suffix to append to the generated structs (can be empty)
SUFFIX_SWIFT_STRUCTS=
# Prefix to append to the generated structs (can be empty)
PREFIX_SWIFT_STRUCTS=
# The packages to import for each generated file
# To specify multiple packages, separate them by adding '|' between them, like so: MyPackage|MyPackage2
PACKAGES=
# Will find unused indexes + missing indexes for dynamic queries
INDEX_OPTIMIZER=true
# Add this if you want the SQL queries to be logged in debug mode
ANDROID_PACKAGE_NAME=
# Set to true to log the arguments but this makes the app very slow (this is only executed in debug though)
ANDROID_ENABLE_VERBOSE_SQL_ARGUMENT_LOGGING=false