Skip to content

Account information management tool.

Notifications You must be signed in to change notification settings

liuxd/OpenSesame

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Feature

  • Two files : Programme file, Data file.
  • Two modes : Web Page, Command Line.
  • Security : Every deployment has its own secret key. It means even the code is open source and the data file is lost, the private data is also safe.

Requirements

  • PHP 5.4+
    • mbstring
    • mcrypt
    • zlib

Installation

git clone [email protected]:open-sesame/OpenSesame.git
cp dev/config.ini.sample src/config.ini
cd open-sesame/dev
php phar-packer.php --name=os --path=../src/
nohup php -S 0.0.0.0:8000 os.phar > /dev/null &

Then visit http://localhost:8000.

Usage

Two modes : Web PageCommand Line

  • Web Page - As you can see. screenshot.png

  • Command Line - As followed :

asciicast

Development

- Debug mode -

- Code Style -

  • Rule : PSR-1PSR-2
  • Installation : In the dev/folder, run composer.phar install to install the sanning tool.
  • Run : ./code-sniffer.sh

- Aided Tools -

  • Create a new command controller : php index.php createCmd {$command_name}
  • Create a new normal controller : php index.php createController {$controller_name}

- Deployment -

  • Requirements : Set phar.readonly as Off in php.ini.
  • Package : Run dev/phar-packer.php
  • Example : ./phar-packer.php --name=opensesame --path=../src

- Release -

  • Tool : dev/release.sh
  • Example : ./release.sh v5.0.1