Giter Club home page Giter Club logo

sadari's Introduction

sadari

제작동기

회사에서 사다리를 자주 돌립니다.

카카오톡 사다리 기능을 이용했는데 불편한 점들이 있었습니다.

pc버전이 없는 점, 결과를 캡쳐해서 pc로 전송해야하는 불편함, 결과를 보기 힘든 UX등이 있었습니다.

불편을 해소하고자 직접 만들었습니다.

작업환경

서버

php 내장 서버를 사용합니다.

$ php -S 0.0.0.0:8080 -t ./

DB

맴버 테이블

CREATE TABLE `member` (
  `id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(30) NOT NULL,
  `team_id` int(11) DEFAULT NULL,
  `resign` date DEFAULT NULL,
  `position` varchar(30) DEFAULT NULL,
  `start_date` varchar(30) DEFAULT NULL,
  PRIMARY KEY (`id`)
);

팀 테이블

CREATE TABLE `team` (
  `team_id` int(11) NOT NULL AUTO_INCREMENT,
  `team` varchar(30) NOT NULL,
  `team_eng` varchar(30) DEFAULT NULL,
  `team_color` varchar(10) DEFAULT NULL,
  PRIMARY KEY (`team_id`)
);

관리자 아이디 테이블

CREATE TABLE `user` (
  `id` varchar(16) NOT NULL,
  `password` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
);

*** 이 서비스는 개인작업용이며 아직 안정화 되지 않았습니다.**

sadari's People

Contributors

dependabot[bot] avatar tg0825 avatar

Watchers

 avatar  avatar

sadari's Issues

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.