-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.example
28 lines (21 loc) · 859 Bytes
/
.env.example
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 file is part of the Provider API Example.
#
# Copyright (C) 2023 Serghei Iakovlev <[email protected]>
#
# For the full copyright and license information, please view
# the LICENSE file that was distributed with this source code.
API_TITLE='Provider API Example'
API_VERSION='v2'
OPENAPI_VERSION='3.0.3'
# Base URL for API provider.
BASE_URI=https://127.0.0.1:5000
# Local database to use w/o Docker. Comment it out to use the default value.
# To see the default value refer to 'provider.DevelopmentConfig' in
# 'provider/config.py' file.
#
# DEV_DATABASE_URL=sqlite:////home/user/work/provider-pact-example/dev-sb.sqlite3
# In-memory database for testing purposes.
TEST_DATABASE_URL=sqlite://
# Production database.
# dialect[+driver]://user:password@host/dbname[?key=value..]
DATABASE_URL=mysql+pymysql://user:[email protected]:3306/db_name