├── .gitignore ├── LICENSE ├── README.md ├── favicon.ico └── index.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | db.sqlite 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyuum/simple-note/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyuum/simple-note/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyuum/simple-note/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyuum/simple-note/HEAD/index.php --------------------------------------------------------------------------------