first commit

This commit is contained in:
2025-03-25 20:32:26 +00:00
commit da487f3870
70 changed files with 17146 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
to install the dev env:
sudo pip3 install virtualenv
virtualenv p3env
source p3env/bin/activate
pip install uwsgi flask fernet pymysql
to install kivi in the venv:
pip install Cython==0.23
sudo apt-get install libgl1-mesa-dev
pip install kivy
pip install pygame
vi ~/.kivy/config.ini
change: multisamples = 0
# as root in mysql
create database Flowers;
grant create,select,update,insert,grant option on Flowers.* to flower@localhost identified by '608f0b988db4a96066af7dd8870de96c';
grant create user,reload on *.* to flower@localhost;
flush privileges;