/courses

Full-stack position test task

Primary LanguagePHP

Step-by-step guide to running the application.

  1. Begin by cloning the repository to your local machine:
git clone git@github.com:toomastahves/courses.git
  1. Navigate to cloned repository and launch application containers using Docker Compose:
cd courses
docker compose up -d
  1. Once applications are running, execute database migrations and seed data by entering the backend container:
docker exec courses-backend /bin/bash -c "php artisan migrate --seed"
  1. The applications should now be available on following URLs:
Frontend: http://localhost:5000/
Backend: http://localhost:5001/api/documentation