A simple markdown note taking application with encryption support built in PHP.
Ricardo García Jiménez 292a3259fe feat: Optimiza la selección de campos en la API de tags del usuario | 4 хвилин тому | |
---|---|---|
app | 4 хвилин тому | |
bin | 6 місяців тому | |
config | 2 місяців тому | |
docs | 10 місяців тому | |
migrations | 9 місяців тому | |
public | 3 місяців тому | |
routes | 22 годин тому | |
writable | 7 місяців тому | |
.gitignore | 7 місяців тому | |
COPYING | 10 місяців тому | |
README.md | 4 днів тому | |
bootstrap.php | 5 днів тому | |
composer.json | 2 місяців тому | |
composer.lock | 2 місяців тому | |
env.example | 2 місяців тому | |
prettyphp.json | 10 місяців тому |
A simple markdown note taking application with encryption support built in PHP.
Install dependencies:
composer install
Copy the env.example
file to .env
and configure your application:
cp env.example .env
Run database migrations:
composer run migrations -- --setup
Generate JWT private key:
openssl genrsa \
-out writable/jwt/rsa-private-key.pem \
2048
Generate JWT public key from the private key:
openssl rsa -in writable/jwt/rsa-private-key.pem \
-pubout \
-outform PEM \
-out writable/jwt/rsa-public-key.pem
Format PHP code:
composer run prettier
Generate entity-relationship diagram:
composer run gendb-diagram
tinynote -- A simple markdown note taking application with encryption support built in PHP.
Copyright (C) 2024 Ricardo García Jiménez <ricardogj08@riseup.net>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.