Fix docker setup
This commit is contained in:
parent
155f81ca44
commit
2f81ebc8ce
2 changed files with 2 additions and 1 deletions
|
@ -32,7 +32,7 @@ async def main():
|
||||||
config = Config(config_path)
|
config = Config(config_path)
|
||||||
|
|
||||||
# Configure the database
|
# Configure the database
|
||||||
store = Storage(config)
|
store = Storage(config.database)
|
||||||
|
|
||||||
# Configuration options for the AsyncClient
|
# Configuration options for the AsyncClient
|
||||||
client_config = AsyncClientConfig(
|
client_config = AsyncClientConfig(
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -36,6 +36,7 @@ setup(
|
||||||
"PyYAML>=5.1.2",
|
"PyYAML>=5.1.2",
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
|
"postgres": ["psycopg2>=2.8.5"],
|
||||||
"dev": [
|
"dev": [
|
||||||
"isort==5.0.4",
|
"isort==5.0.4",
|
||||||
"flake8==3.8.3",
|
"flake8==3.8.3",
|
||||||
|
|
Loading…
Reference in a new issue