https://github.com/stereoflo/fitness
https://github.com/stereoflo/fitness
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stereoflo/fitness
- Owner: StereoFlo
- Created: 2019-03-05T15:48:36.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-11T05:42:19.000Z (about 7 years ago)
- Last Synced: 2025-06-03T05:59:33.292Z (about 1 year ago)
- Language: PHP
- Size: 650 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#### Установка зависимостей
```bash
php composer.phar install
```
#### Настройки БД && RabbitMQ
```bash
vi config/parameters.yml
```
#### Инициализация БД
```bash
php bin/console doctrine:schema:update --force
```
#### Тестовые данные
```bash
php bin/console doctrine:fixtures:load -q
```
admin: admin@admin.ru : 123
user: user@user.ru : 123
#### Запуск сервера
База обязательно должна существовать
```bash
php -S 127.0.0.1:8000 -t public/
```