https://github.com/cartalyst/demo-sentinel
[DEPRECATED] Sentinel Demo
https://github.com/cartalyst/demo-sentinel
Last synced: about 1 year ago
JSON representation
[DEPRECATED] Sentinel Demo
- Host: GitHub
- URL: https://github.com/cartalyst/demo-sentinel
- Owner: cartalyst
- License: other
- Created: 2013-11-25T10:02:18.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-10-23T00:58:39.000Z (over 11 years ago)
- Last Synced: 2025-04-12T07:40:32.700Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 9.7 MB
- Stars: 66
- Watchers: 10
- Forks: 40
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Contributing: CONTRIBUTING.md
- License: license.txt
Awesome Lists containing this project
README
# Sentinel Demo
This is a basic demo showing some of the functionality of Sentinel on Laravel 4.2.
## Installation
##### 1. Clone this repo:
```
git clone git@github.com:cartalyst/demo-sentinel.git
```
##### 2. Setup your virtual host.
##### 3. Go into your app directory in your terminal and install the dependencies: (cartalyst requires a subscription)
```
composer install
```
##### 4. Configure your database connection by opening `app/config/database.php` file.
##### 5. Update the `app/config/mail.php` file to use your email credentials.
>**Note:** make sure you set `pretend` to false after you configure your email credentials.
##### 6. Run the migrations
```
php artisan migrate --package="cartalyst/sentinel"
```
##### 7. Run the migration & database seeder
```
php artisan migrate --seed
```
##### 8. Publish the package to app folder(app/config/packages), so that you can manage throttling or other settings
```
php artisan config:publish cartalyst/sentinel
```