Skip to content

Anteste/symbnb

Folders and files

NameName
Last commit message
Last commit date
Jun 7, 2020
Jul 8, 2020
Nov 19, 2020
Dec 1, 2020
Dec 1, 2020
Jun 7, 2020
Jun 7, 2020
Nov 19, 2020
Jun 7, 2020
Jul 8, 2020
Jun 7, 2020
Nov 19, 2020
Jun 10, 2020
Nov 19, 2020
Jun 7, 2020
Nov 19, 2020

Repository files navigation

Symbnb

SymBNB can be used:

  • to travelers, in order to find a good to find accommodation during their stay.
  • property owners, in order to rent their apartment or house to travelers.

Programming languages ​​used:

  • php
  • javascript
  • twig

Framework used: Symfony 5.1 Database: MySQL

INSTALLATION:

  • Clone the project
$ git clone https://github.com/Anteste/symbnb.git
  • Install dependencies
$ composer update
$ composer install 
  • Configure your database in the .env file
DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7.31
  • Start migrations
$ php bin/console doctrine:migrations:migrate
  • Launch the fixtures
$ php bin/console doctrine:fixtures:load
  • Start the server
$ symfony serve