From c8ccc2bf5036d4b6aae89f4d7a52e73da945e85c Mon Sep 17 00:00:00 2001 From: d47081 <108541346+d47081@users.noreply.github.com> Date: Thu, 19 Oct 2023 04:10:03 +0300 Subject: [PATCH] Created Install (markdown) --- Install.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Install.md 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