https://github.com/sheitak/wild-series
Website listing of series, seasons and episodes. Designed with PHP and Symfony. Database management with MySQL and Doctrine ORM.
https://github.com/sheitak/wild-series
Last synced: 11 months ago
JSON representation
Website listing of series, seasons and episodes. Designed with PHP and Symfony. Database management with MySQL and Doctrine ORM.
- Host: GitHub
- URL: https://github.com/sheitak/wild-series
- Owner: Sheitak
- Created: 2019-11-12T14:19:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T00:49:15.000Z (over 3 years ago)
- Last Synced: 2025-01-21T06:26:15.369Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 32.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wild-Series
### First Project with Symfony
Video Symfony 09 : https://www.loom.com/share/c543f36922b244e59c5f36a7176a93b8
Video Symfony 10 : https://www.loom.com/share/2d30908e37db4ae2ae98c4a063200741
Video Symfony 11 : https://www.loom.com/share/aa5dd115b3a447bbb280995ad87ce34d
Video Symfony 12 : https://www.loom.com/share/dbbd2d4b09e249b0a38a779528cfaab1
Video Symfony 13 : https://www.loom.com/share/f6876f8c483b40c8be78cd8153cd44af
Video Symfony 14 : https://www.loom.com/share/a33ff8c81f8f4a1495a131e22fe13ea9
Video Symfony 15 : https://www.loom.com/share/90e4deb7242f492ca2d2318ef8a0d9b2
Video Symfony 16 : https://www.loom.com/share/6b95445c290e43ebbee994ca9f2facdf
Video Symfony 17 : https://www.loom.com/share/ba1feda8868f4e78bfb384a0b4f7b5a4
Video Symfony 18 : https://www.loom.com/share/4b7c75198be74199b2c783ae087467ec
Video Symfony 19 : https://www.loom.com/share/d0fe85464ce744d2b6b6689a56309c80
Video Symfony 20 : https://www.loom.com/share/eaf792d435a74a369838b6ac581f2d47
# Project installation
## 1. Configure your environment
- Duplicate ".env" file and rename the duplicated file ".env.local"
- Customize the DATABASE_URL variable.
(Replace user & password in the example below)
```
DATABASE_URL=mysql://:@127.0.0.1:3306/wildseries?serverVersion=5.7
```
## 2. Install PHP dependencies
```
composer install
```
## 3. Import the datas
- Remove existing database
```
php bin/console doctrine:database:drop --force
```
- Create new database
```
php bin/console doctrine:database:create
```
- Import the database
```
php bin/console doctrine:database:import db.sql
```
## 4. Install JS dependencies
```
yarn install
```
## 5. Build Webpack JS & CSS source files
```
yarn dev
```
## 6. Start dev server
```
symfony server:start
```