This repository has been archived on 2026-03-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blog-slim.old/README.md
julien 3cb4f8c09a doc
2026-02-22 18:00:07 +01:00

29 lines
429 B
Markdown
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# blog-slim
* PHP comme language
* Slim comme framework
* Eloquent comme ORM
* Twig comme template engine
## Utilisation
Installer les dépendances :
```
$ composer install
```
Créer le fichier vide pour la base de données :
```
mkdir database && touch database/blog.sqlite
```
Exécuter le script de migration:
```
$ php migrate.php
```
Lancer le serveur de développement :
```
$ php -S localhost:8080 -t public
```