Skip to content

Commit

Permalink
Alpha release success!
Browse files Browse the repository at this point in the history
Removed proxy/realm migrations until the new format is sorted.
Updated readme
Updated env example
Removed graph menu entries
  • Loading branch information
QuackenbushDev committed Aug 21, 2016
1 parent 97a78d3 commit e912ff1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 83 deletions.
6 changes: 4 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_DEBUG=false
APP_LOG_LEVEL=debug
APP_URL=http://localhost

RADIUM_PASSWORD_ATTRIBUTE=Cleartext_Password
RADIUM_DISABLED_GROUP=Radium-Disabled-Users
RADIUM_RADIUS_SERVER=127.0.0.1
RADIUM_RADIUS_PORT=1812
RADIUM_RADIUS_SECRET=mysecret
RADIUM_RADIUS_SECRET=radiusSecret123456
RADIUM_NAS_PORT=0
RADIUM_CONFIG_FOLDER=C:\FreeRADIUS.net\etc\raddb
RADIUM_PROXY_FILE=proxy.conf

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
Expand Down

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions database/seeds/OperatorAccountSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ class OperatorAccountSeeder extends Seeder
public function run()
{
User::create([
'email' => "demo@radium.radium",
'email' => "admin@radium.radium",
'password' => bcrypt("radiumadmin"),
'name' => "Radium Administrator"
]);

echo "Successfully created radium demo account.\n";
echo "You may login with the email: demo@radium.radium and the password: radiumadmin.\r\n";
echo "You may login with the email: admin@radium.radium and the password: radiumadmin.\r\n";
}
}
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ A full featured radius management system for FreeRadius setups using the mysql b
* NPM / Gulp (css compilation)

# Installation
1. Clone Radium into your web director
1. Clone Radium into your web director, cd into Radium, git checkout release
2. Create a vhost for the domain that points to the public folder
3. Copy .env.example to .env and configure the application settings
4. Run php artisan key:generate to generate a new application secret for Radium
5. Run php artisan db:seed --class=OperatorSeeder

4. Install Composer and run composer install
5. Run php artisan key:generate to generate a new application secret for Radium
6. Run php artisan db:seed --class=OperatorSeeder
4 changes: 2 additions & 2 deletions resources/views/partials/layout/menu.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<i class="fa fa-table"></i> <span>Accounting</span>
</a>
</li>
<li class="header">Graphs</li>
<!--<li class="header">Graphs</li>
<li class="treeview">
<a href="{{ route('graph::user') }}">
<i class="fa fa-user"></i> <span>User</span>
Expand All @@ -73,7 +73,7 @@
<a href="{{ route('graph::statistics') }}">
<i class="fa fa-pie-chart"></i> <span>Statistics</span>
</a>
</li>
</li>-->
<li class="header">Admin</li>
<li class="treeview">
<a href="{{ route('operator::index') }}">
Expand Down

0 comments on commit e912ff1

Please sign in to comment.