Replies: 1 comment
-
I couldn't reproduce the issue (and since migrations are enabled, drift should create the tables when running against a fresh postgres instance). Were you able to find out what caused this? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Greetings, I'm testing out the
multi_package
example in the repository.I start with a clean clone, run
dart run build_runner build
in each of theshared
,client
,server
folders.I serve a postgres server with the default properties:
docker run -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres postgres
.Then I run the server:
dart run bin/server.dart
as per the readme.After curling
curl http://localhost:8080/posts/latest
I get an error on the server with stacktrace:I am wondering if I followed the setup steps wrong for this example, and if anyone is able to reproduce this?
Beta Was this translation helpful? Give feedback.
All reactions