vocascan/vocascan-server

version alignment instructions for server install

jabowery opened this issue · 5 comments

Feature Request:

I can't get the server running due to version alignment problems:

sequelize/sequelize#10633 (comment)

I fixed this issue in #58.
it occurred because bool values ​​were specified as a string in the role seeders and Mysql cannot convert them automatically, as it seems

example

  {
    id: uuid(),
    name: 'admin',
-    adminRights: 'true',
+    adminRights: true,
    createdAt: new Date(),
    updatedAt: new Date(),
  },

The PR is created and we try to merge it as fast as possible to fix the issue. In the meantime you could consider to use another database that works right now (PostgreSQL, MariaDb, SQlite)

MariaDb fails as well.

I transferred this issue to the server repo, because it’s the right place for bugs with the server.

Sorry, I thought I tested mariadb one time. But anyway. Can you confirm that this fix work for both drivers?

but I think to prevent that kind of bug sometime we should create simple integration tests which run after each commit.

Can you confirm, if it now works?

Since there is no activity the last 3 months on that issue, i'll close that for now. If you still run into any issues, feel free to open a new issue.