Database file missing
Seems a perfect system build but I am facing an issue. there is no database file included in project code and one is required to complete working of this system. is there any SQL file you can share with us?
First you must install and configure MySQL and configure credetials in app.py
You need to create the test database:
CREATE DATABASE test;
Table users:
create table users( id INT NOT NULL AUTO_INCREMENT, uname VARCHAR(200) NOT NULL, password VARCHAR(200) NOT NULL, name VARCHAR(200) NOT NULL, PRIMARY KEY ( id ) );
Table final_ana:
create table final_ana( id INT NOT NULL AUTO_INCREMENT, name VARCHAR(200) NULL, dateof VARCHAR(200) NULL, forgery VARCHAR(200) NULL, forged VARCHAR(200) NULL, PRIMARY KEY ( id ) );
anyone can help me how to run this project? please