Lack of PostgreSQL connector
christiankakesa opened this issue · 2 comments
christiankakesa commented
The setup.py doesn't mention PostgreSQL's connector.
I have an error when launching sketchy in docker container :
ImportError: No module named psycopg2
sbehrens commented
@FeNicks I haven't setup Postgres for Sketchy. IT should support MySQL and the associated connectors without requiring any configuration changes. Since it uses SQLAlchemy under the hood, if you would like to use Postgres you could add psycopg2
to the setup.py file.
christiankakesa commented
@sbehrens When adding psycopg2
in setup.py everything is OK, thank you.