This project consists in a single page application that represents a bank page. The Backend was built using Symfony and API Platform, the Frontend was built using Angular.
- Symfony 7
- Symfony CLI 5.8.14
- Composer 2.7.2
- PHP 8.2.17
- Docker 26.0.0
- Angular 14.2.13
- Node 14.21.3
- NPM 6.14.18
The frontend can be installed by running the following commands:
npm install
ng serve
The backend can be installed by running the following commands:
docker compose up
symfony server:start
After the start of the PostgresDB inside the docker container, run the following commands to create the database and the tables:
symfony console make:migration
symfony console doctrine:migrations:migrate