Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fajarwz/blog-laravel-signed-url
An implementation of Laravel Signed URL from fajarwz.com/blog
https://github.com/fajarwz/blog-laravel-signed-url
example-project laravel php signed-url temporary-url
Last synced: 24 days ago
JSON representation
An implementation of Laravel Signed URL from fajarwz.com/blog
- Host: GitHub
- URL: https://github.com/fajarwz/blog-laravel-signed-url
- Owner: fajarwz
- Created: 2024-05-26T13:46:41.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-05-27T01:08:15.000Z (7 months ago)
- Last Synced: 2024-12-06T06:47:20.199Z (about 1 month ago)
- Topics: example-project, laravel, php, signed-url, temporary-url
- Language: PHP
- Homepage: https://fajarwz.com/blog/temporary-signed-urls-in-laravel-for-secure-password-resets/
- Size: 65.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Temporary Signed URLs in Laravel for Secure Password Resets
This is an implementation of Laravel CRUD tutorial. A blog about this can be found here: [Temporary Signed URLs in Laravel for Secure Password Resets | Fajarwz](https://fajarwz.com/blog/temporary-signed-urls-in-laravel-for-secure-password-resets/).## Installation
### Composer Packages
```
composer install
```## Configuration
### Create `.env` file from `.env.example`
```
cp .env.example .env
```### Generate Laravel App Key
```
php artisan key:generate
```### Database Integration
1. Open `.env` file
2. Create a database and connect it with Laravel with filling the DB name in `DB_DATABASE` key
3. Adjust the `DB_USERNAME`
4. Adjust the `DB_PASSWORD`### Migrate the Database Migration
```
php artisan migrate
```## Run App
Run local web server
```
php artisan serve
```