A backbone for your coding challenge.
- Backend service - a Laravel service with a
/ping
endpoint. Extend with your code. - Frontend app - a React/NextJS app. Extend with your code.
- E2E test suites - a backend and a frontend Cypress test suites. Extend with your tests.
- Pipeline - a test Runner that executes the Cypress tests on push to a branch other than
master
/main
.
- PHP 8.0.28,
- Laravel Framework 9.52.9
- sqlite3 (SQLite connection)
- NextJS
- React
- Cypress
- GitHub Actions
-
Make sure the required version of PHP (8.0) and Laravel Framework (9.52) is configured on your local env.
-
Make sure npm & node are configured on your local env. You can download those distributions for your platform here
-
Build your app.
npm install
npm run build # both Laravel backend and NextJS frontend
npm run build:backend # only Laravel backend
npm run build:frontend # only NextJS frontend
- Start your app.
npm install
npm run start # both Laravel backend and NextJS frontend
npm run start:backend # only Laravel backend
npm run start:frontend # only NextJS frontend
- Run the Cypress tests.
npm run test # run project tests under `cypress/integration`
Made by Alva Labs.