Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

harvard-lil/place-your-face

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Place Your Face requires a DB and one table. Something like this.

mysql -u root -psomepasshere
mysql> create database placeyourface character set utf8; grant all on placeyourface.* to placeyourface@'%' identified by 'placeyourface';
mysql -u placeyourface -pplaceyourface placeyourface


CREATE TABLE `images` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `file_name` varchar(35) DEFAULT NULL,
  `created_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8

Be sure to update your config.php file with the DB values.

About

Place your face in an image from the archives

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published