A simple markdown note taking application with encryption support built in PHP.

Ricardo García Jiménez 3b6b1a2291 feat: Normaliza los keys de configuración hai 16 horas
app 3b6b1a2291 feat: Normaliza los keys de configuración hai 16 horas
bin e4a88068e1 refactor: Renombra nombres de variables hai 6 meses
config 3b6b1a2291 feat: Normaliza los keys de configuración hai 16 horas
docs f67bf2dd00 docs: Inicializa la documentación de la API con gendoc hai 16 horas
documentation f67bf2dd00 docs: Inicializa la documentación de la API con gendoc hai 16 horas
migrations 32ae7d7a98 docs: Detalla los comentarios de las migraciones, modelos y utilerías hai 9 meses
public 0f4d574451 feat: Agrega favicon del sitio web hai 3 meses
routes b01a7642ee feat: Registra usuarios desde el sitio web hai 18 horas
writable c16a0f3ef0 feat: Configura las variables de sesión hai 7 meses
.gitignore c16a0f3ef0 feat: Configura las variables de sesión hai 7 meses
COPYING d906443fdd feat: Agrega estructura base de la aplicación hai 10 meses
README.md f67bf2dd00 docs: Inicializa la documentación de la API con gendoc hai 16 horas
bootstrap.php 4969c19436 feat: Establece todas las funciones de fecha de PHP a UTC hai 6 días
composer.json f67bf2dd00 docs: Inicializa la documentación de la API con gendoc hai 16 horas
composer.lock 9e0b81bdb8 chore: Actualiza dependencias de terceros hai 2 meses
env.example 6fbd47d916 feat: Renombra variable de entorno APP_PROXY a APP_HTTP_PROXY hai 2 meses
prettyphp.json 91b156709c style: Agrega configuración de pretty-php a PSR-12 hai 10 meses

README.md

tinynote

A simple markdown note taking application with encryption support built in PHP.

Installation

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

Commands

Format PHP code:

composer run prettier

Generate entity-relationship diagram:

composer run gendb-diagram

Generate API documentation:

composer run gendoc

References

License

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/>.