mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2026-03-31 17:15:38 +00:00
Created Install (markdown)
parent
4ba6dc7d80
commit
c8ccc2bf50
1 changed files with 45 additions and 0 deletions
45
Install.md
Normal file
45
Install.md
Normal file
|
|
@ -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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue