Giter VIP home page Giter VIP logo

modern-localhost's Introduction

Modern Localhost

Modern Localhost is a beautified version of your typical localhost index page.

Modern Localhost with the grayish theme

Install

Download this repo and extract index.php to your www folder, or whatever is your server's root. You can also replace your webserver's default index page to it.

Configuration

You can edit the $options array at the top of the index.php to customize it your needs.

...
$options = [
    /**
     * Set the theme
     * Available themes: bluey, pinky, purply
    */
    'theme' => 'grayish',

    /**
     * Exclude files or folders
     * use wildcard pattern. eg: ['.git*', '*.exe', '*.sh']
    */
    'exclude' => [ ],

    /**
     * Add extra tools 
     * [label] => '[link of the tool]
     * eg: 'phpMyAdmin' => 'http://localhost/phpMyAdmin'
    */
    'extras' => [
	    'phpinfo()' => '?phpinfo=1'
    ]
];
...

Themes

Available values for the theme are: grayish bluey pinky purply Screenshot of available themes

Excluding Files/Folders

You can tell it to exclude certain files and folders. For example to tell it to exclude all the .exe files you can specify:

...
  'exclude' => [
    '*.exe'
  ],
...

To exclude multiple files and folders:

...
  'exclude' => [
    '*.exe', '*.git', `*.sh', 'config/*'
  ],
...

Support

This project is targeted for so-called LAMP environments (Linux, Apache, MySQL and PHP). Also equally supports MAMP and WAMP. Other environments can also be supported but with a little bit of tweak.

License

Copyright (C) 2020 Mohamed Adhuham [email protected]

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.