What this will cover
- Host a static website at S3
- Redirect
www.website.comtowebsite.com - Website can be an SPA (requiring all requests to return
index.html) - Free AWS SSL certs
- Deployment with CDN invalidation
| { | |
| "name": "mmollick/github-team-repos", | |
| "authors": [ | |
| { | |
| "name": "Mike Mollick", | |
| "email": "mollick2@gmail.com" | |
| } | |
| ], | |
| "require": { | |
| "guzzlehttp/guzzle": "^7.0" |
| <?php | |
| namespace App\Http\Controllers; | |
| use App\Models\Subscriber; | |
| use App\User; | |
| use Illuminate\Http\Request; | |
| use Illuminate\Foundation\Auth\AuthenticatesUsers; | |
| use Illuminate\Support\Facades\Hash; |
This gist assumes: