vocascan / vocascan-server

Server for Vocascan
https://vocascan.com
Apache License 2.0
26 stars 5 forks source link

version alignment instructions for server install #60

Closed jabowery closed 2 years ago

jabowery commented 3 years ago

Feature Request:

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

https://github.com/sequelize/sequelize/issues/10633#issuecomment-918471084

noctera commented 3 years ago

I fixed this issue in vocascan/vocascan-server#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)

jabowery commented 2 years ago

MariaDb fails as well.

luwol03 commented 2 years ago

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.

luwol03 commented 2 years ago

Can you confirm, if it now works?

luwol03 commented 2 years ago

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.