Skip to content

Commit

Permalink
- revisit texts and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
r-brown committed Jun 20, 2017
1 parent ec7f2b1 commit 3ba804f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 29 deletions.
27 changes: 2 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ You can directly edit configuration files from within the repo as they are mappe

<p align="center"><img src="https://raw.githubusercontent.com/Labs64/laravel-boilerplate/master/dockerfiles/img/laravel-boilerplate-docker.png" alt="Laravel Boilerplate Docker"></p>

### Minimum System Requirements
### System Requirements
To be able to run Laravel Boilerplate you have to meet the following requirements:
* [docker](https://www.docker.com)
* [docker-compose](https://docs.docker.com/compose/)
Expand Down Expand Up @@ -163,34 +163,11 @@ Now you can browse the site [http://localhost:80](http://localhost:8080) 🙌

---

Stop environment
5. Stop environment
```
$ docker-compose down
```

### Useful commands

List docker processes
```
$ docker ps
```

Execute script in a container
```
$ docker exec -it <CONTAINER ID|CONTAINER NAME> bash
```

Verify available databases
```
# mysql -u root -p laravel_boilerplate
mysql> show databases;
```

Remove all docker-compose images
```
$ docker-compose rm -v
```

## How To's & Modules configuration

Check out project [wiki](https://github.com/Labs64/laravel-boilerplate/wiki) pages for modules configuration and troubleshooting.
Expand Down
8 changes: 4 additions & 4 deletions resources/views/admin/permissions.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<td>{{ $user->name }}</td>
<td>
@if($user->hasRoles(config('protection.except_roles')))
<div class="line_30 h4">
Has access to all membership plans
<div class="line_30 h5">
&nbsp;
</div>
@else
<a title="Repeat validation" class="btn btn-default pull-right" href="{{ route('admin.permissions.repeat',$user) }}">
Expand Down Expand Up @@ -77,8 +77,8 @@
<div>
<h4>How To</h4>
<ul>
<li>Manage available membership plans - <a href="https://go.netlicensing.io/console/v2/content/vendor/licensetemplate.xhtml?filterkey=productModuleNumber&filtervalue={{ config('netlicensing.membership.product_module_number') }}" target="_blank"/>NetLicensing Management Console » License Templates</a></li>
<li>View and manage registered users - <a href="https://go.netlicensing.io/console/v2/content/vendor/licensee.xhtml?filterkey=productNumber&filtervalue={{ config('netlicensing.product_number') }}" target="_blank"/>NetLicensing Management Console » Licensees</a></li>
<li>Manage available membership plans - <a href="https://go.netlicensing.io/console/v2/content/vendor/licensetemplate.xhtml?filterkey=productModuleNumber&filtervalue={{ config('protection.membership.product_module_number') }}" target="_blank"/>NetLicensing Management Console » License Templates</a></li>
<li>View and manage registered users - <a href="https://go.netlicensing.io/console/v2/content/vendor/licensee.xhtml?filterkey=productNumber&filtervalue={{ config('protection.product_number') }}" target="_blank"/>NetLicensing Management Console » Licensees</a></li>
</ul>
</div>
</div>
Expand Down

0 comments on commit 3ba804f

Please sign in to comment.