DocAuth icon indicating copy to clipboard operation
DocAuth copied to clipboard

Database file missing

Open jastoing opened this issue 5 years ago • 2 comments

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?

jastoing avatar Aug 15 '20 11:08 jastoing

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 ) );

juanhenaoparra avatar Nov 11 '20 19:11 juanhenaoparra

anyone can help me how to run this project? please

rafzbulz avatar May 16 '22 16:05 rafzbulz