Hi guys I am new to this project and wanted to con...
# contributors
c
Hi guys I am new to this project and wanted to contribute to the ory/kratos project. I have cloned the repo locally but I can't run the migrate command:
go run ./main.go migrate sql -c ./tmp/config.yml -e
I get this error:
Copy code
WARN[2022-11-14T22:02:24+05:30] Unable to connect to database, retrying.      audience=application error=map[message:could not create new connection: sqlite3 support was not compiled into the binary stack_trace:stack trace could not be recovered from error type *fmt.wrapError] service_name=Ory Kratos service_version=master
Can someone please help me out with this?
s
you have to add
-tags sqlite
to the go build/run command:
go run -tags sqlite ./main.go ...
🙏 1