Skip to content

Anteste/symbnb

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:[email protected]: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