https://github.com/tiboitel/alfred
Let's talk thanks to LLM's and generative AI to Alfred and let him give us a helping hand
https://github.com/tiboitel/alfred
Last synced: about 1 month ago
JSON representation
Let's talk thanks to LLM's and generative AI to Alfred and let him give us a helping hand
- Host: GitHub
- URL: https://github.com/tiboitel/alfred
- Owner: tiboitel
- License: mit
- Created: 2025-01-26T04:56:02.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-01-30T10:38:48.000Z (3 months ago)
- Last Synced: 2025-02-09T08:36:43.530Z (3 months ago)
- Language: PHP
- Size: 23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Alfred
Alfred Pennyworth or maybe... Pelfred Anyworth ?
## Setup Instructions
1. Clone the repository:
```bash
git clone https://github.com/your-repo.git
cd your-repo
```2. Copy the `.env.example` file to `.env`:
```bash
cp .env.example .env
```3. Update `.env` with your environment-specific variables:
- Set the database credentials (`DB_HOST`, `DB_DATABASE`, etc.).
- Leave `APP_KEY` blank for now (it will be generated in the next step).4. Start the Docker containers:
```bash
docker-compose up -d --build
```5. Generate the Laravel application key:
```bash
docker exec -it alfred-app bash
php artisan key:generate
```6. Clear and cache the configuration:
```bash
docker exec -it alfred-app bash
php artisan config:clear
php artisan config:cache
```7. Your application should now be accessible at `http://localhost:8080`.
## License
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).