> For the complete documentation index, see [llms.txt](https://cours.davidannebicque.fr/symfony/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cours.davidannebicque.fr/symfony/autres-ressources/creer-un-environnement-symfony-collaboratif.md).

# Créer un environnement Symfony collaboratif

* [ ] composer create-project symfony/skeleton nom\_du\_projet
* [ ] cd nom\_du\_projet
* [ ] composer require twig annotation orm
* [ ] composer require maker debug-pack --dev
* [ ] cp .env .env.local
* [ ] git init
* [ ] Créer le dépôt sur GitHub
* [ ] git remote add origin <https://github.com/....git>
* [ ] git add \* (attention, fonctionne grâce au .gitignore de symfony)
* [ ] git commit -m "installation de symfony"
* [ ] git push origin master
