Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ismaail/blogmvc-symfony
https://github.com/ismaail/blogmvc-symfony
demo symfony4
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ismaail/blogmvc-symfony
- Owner: ismaail
- Created: 2018-08-19T18:21:59.000Z (about 6 years ago)
- Default Branch: develop
- Last Pushed: 2023-02-01T19:43:39.000Z (almost 2 years ago)
- Last Synced: 2024-04-15T02:00:06.707Z (7 months ago)
- Topics: demo, symfony4
- Language: PHP
- Size: 796 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blog MVC - Symfony
[![Build Status](https://api.travis-ci.com/ismaail/blogmvc-symfony.svg?branch=develop&status=canceled)](https://www.travis-ci.com/github/ismaail/blogmvc-symfony)
##### Requirements
- PHP 8.0
##### Installation
```composer install```
##### Configuration
Copy ```.env.dist``` to ```.env``` and change database configuration.
##### Database migrations and seed
Run migrations:
```php bin/console doctrine:migrations:migrate```
Fill the database with data:
```php bin/console doctrine:fixtures:load```
> Need to clear the cache before sedding the database.
##### Tests
```php bin/phpunit```