Skip to content

whygee-dev/aoteshop

Repository files navigation

AOT ESHOP

An ecommerce web app made for school using Symfony 6 featuring basic usual user functionalities and a backoffice for administration.

Installation

  1. Install dependencies
composer install
npm install
  1. Configure your .env with the correct database and mailer credentials
  2. Create the database and run migrations using doctrine
symfony console doctrine:database:create
symfony console doctrine:migrations:migrate
  1. Launch Symfony and webpack server (seperate terminals)
symfony serve -D
npm run watch