Soldatov Serhii
Soldatov Serhii
the issue still exist on version ^0.2.0 platform android react-native v.0.72.8
https://dbdiagram.io/d/64201fb15758ac5f17242de4
@urtaevS it seems you should create root user take a look https://stackoverflow.com/questions/19101243/error-1130-hy000-host-is-not-allowed-to-connect-to-this-mysql-server try something like this `docker exec -it mysql -u root -p` `GRANT ALL PRIVILEGES ON *.* TO 'mysql'@'%'...
try to ceate the User (if it doesn't exist): `CREATE USER 'mysql'@'%' IDENTIFIED BY 'password';` And then grant Permissions: ``` GRANT ALL PRIVILEGES ON *.* TO 'mysql'@'%' WITH GRANT OPTION;...
@urtaevS just run migrations: `docker-compose exec bot alembic upgrade head`
have you run the migrations?
@urtaevS just run migrations, it should work, and then download from flibusta dumps and restore database, see README.me in dumps folder
@agconti Have you thought about switching to [uv](https://docs.astral.sh/uv/) package manager? it seems I can use python 3.13 in there without any problems here's my Dockerfile (draft, haven't test it carefully...
@agconti yep, take a look: https://docs.astral.sh/uv/pip/ I also wrote an article about this, including the Dockerfile: https://dev.to/soldatov-ss/boost-your-django-docker-images-by-using-uv-package-and-project-manager-16lj
Have you found workaround?