https://github.com/boldbrush/interview
https://github.com/boldbrush/interview
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/boldbrush/interview
- Owner: boldbrush
- Created: 2016-11-14T16:39:59.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2024-12-10T00:36:33.000Z (over 1 year ago)
- Last Synced: 2025-01-23T08:42:58.484Z (over 1 year ago)
- Language: PHP
- Size: 343 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Installation
Install Docker or any other docker compatible runtime of your liking, such as:
- [Docker Desktop](https://www.docker.com/products/docker-desktop)
- [Orbstack](https://orbstack.dev/)
- [Podman](https://podman.io/)
Run project setup script.
```bash
script/setup
```
Add the following environment variables to the `.env` file. We should have provided this values to you when we sent
you the instructions this project.
```dotenv
API_URL=""
UNRESTRICTED_API_KEY=""
CANDIDATE_API_KEY=""
```
Run the project setup command again.
```bash
script/setup
```
Finally, run this command to start the app server.
```bash
script/server
```
The app will available at [http://boldbrush-interview.test:8080](http://boldbrush-interview.test:8080)
Database access is available at `localhost:33060` using `root` as the user, and no password. Use your favorite database
client to connect to it.
## Recommendations
- Use Laravel's built in [Http client](https://laravel.com/docs/10.x/http-client) for making requests.