Code Monkey home page Code Monkey logo

reminder's Introduction

Reminder

  • Build For Everyone!!

    • This is Reminder , a website that allow user to create personal remind item .
    • Basically , user can view , modify and delete your own remind item . We also provide "send notify email" to your personal mailbox , you can choose to notify or not on web page. Sign up or Sign in to check more !!
  • Getting Started

    • Requirements

      • windows 10 version 1803
      • xampp v3.2.2
    • Clone Repo

      git clone https://github.com/ambersun1234/reminder.git C:\xampp\htdocs\www
      
    • Configure Xampp

      1. launch xampp control panel
      2. press Apache's config , and choose Apache (httpd.conf)
      3. find
      DocumentRoot "C:\xampp\htdocs"
      <Directory "C:\xampp\htdocs">
      
      1. and change to the following
      DocumentRoot "C:\xampp\htdocs\www"
      <Directory "C:\xampp\htdocs\www">
      
      1. start apache & mysql
    • Configure Mysql

      • create the database that reminder needed
      CREATE DATABASE IF NOT EXISTS `reminders`;
      
      CREATE TABLE IF NOT EXISTS `remind_user` (
        `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
        `name` char(100) NOT NULL COMMENT '使用者名稱',
        `password` char(128) NOT NULL COMMENT '使用者密碼',
        `email` varchar(100) NOT NULL COMMENT '使用者帳號',
        `is_delete` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否刪除',
        `modify_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '建置時間',
        PRIMARY KEY (`id`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='使用者資料表';
      
      CREATE TABLE IF NOT EXISTS `remind_item` (
        `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
        `user_guid` bigint(20) unsigned NOT NULL COMMENT 'remind_user.id',
        `item_subject` varchar(100) NOT NULL COMMENT '提醒事項主題',
        `item_remark` varchar(300) NOT NULL COMMENT '提醒事項備註',
        `item_status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '提醒事項狀態0未完成1已完成',
        `notify` tinyint(1) NOT NULL DEFAULT '0' COMMENT '寄信通知0不寄送1寄送',
        `notify_datetime` datetime DEFAULT NULL COMMENT '寄信通知時間',
        `is_delete` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否刪除',
        `create_time` datetime NOT NULL COMMENT '建立時間',
        `modify_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新時間',
        PRIMARY KEY (`id`)
      ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='提醒事項資料表';
      
    • Configure Send Email

      • sendEmail.php
        • $mail->Username = "YOUR_EMAIL"
        • $mail->Password = "YOUR_EMAIL'S_PASSWORD"
        • $mail->setFrom( "YOUR_EMAIL" , "reminder" );
        • the rest of the email setup , please visit PHPMailer
      • auto.bat
        • we use windows 10 build in Task Scheduler to perform auto send email
        • please Create Task
          1. set execute time to one minute
          2. action: start a program , choose auto.bat
  • Running

    • just start apache & mysql server , and type localhost in your web browser
  • License

    • This project is licensed under GPL v3.0 see the LICENSE for detail
  • Photo

    • index
    • view not finished remind item
    • modify remind item
    • delete remind item
    • create remind item

reminder's People

Contributors

ambersun1234 avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.