diff --git a/Install.md b/Install.md new file mode 100644 index 0000000..3a6fe70 --- /dev/null +++ b/Install.md @@ -0,0 +1,45 @@ +# Installation + +## Environment + +``` +symfony check:requirements +``` + +## Production + +Install stable release + +``` +composer create-project yggverse/yggtracker +``` + +## Development + +Latest codebase available in repository + +``` +git clone https://github.com/YGGverse/YGGtracker.git +cd YGGtracker +composer update +symfony server:start +``` + +## Database + +New installation + +``` +php bin/console doctrine:schema:update --force +``` + +Existing DB upgrade + +``` +php bin/console doctrine:migrations:migrate +``` + +## Last steps + +* [Nginx](https://github.com/YGGverse/YGGtracker/wiki/Nginx) +* [Crontab](https://github.com/YGGverse/YGGtracker/wiki/Nginx) \ No newline at end of file