Skip to content

joran98/laclef-webapp

 
 

Repository files navigation

laclef-webapp

This is a PHP+MySQL web application for the management of users, devices, door locks, payments, RFID tags.

laclef webapp

Debian Installation

  1. Install a LAMP server
  2. Fork this repo
  3. Clone it to your /var/www/ directory
  4. Import the database by using this command (please use this SQL dump): $ mysql -u <your_username> -p <your_password> <your_database_name> < laclef-webapp.sql
  5. Modify settings.php according to your MySQL configuration
  6. Fire up your web browser and go to http://localhost/login (login : admin, password : admin)
  7. Enjoy a freshly-brewed coffee !

Raspberry Pi guide

  1. Install a fresh Raspian on your Pi
  2. Insert the SD card in your Pi and plug it up
  3. Fire up your terminal : ssh pi@<your_ip_address> (Default password : raspberry)
  4. Once you are logged in, configure the pi : sudo raspi-config
  5. Upgrade your distro and install the following tools : sudo su then apt-get update && apt-get upgrade
  6. You have time for a coffee break since the upgrade can take a looonnnggg time
  7. Install a LAMP server : apt-get install apache2 php5 mysql-client mysql-server avahi-daemon php5-curl php5-mysql libapache2-mod-php5
  8. Create a user and a database : $ mysql -u <your_username> -p then mysql> CREATE DATABASE laclef; GRANT ALL PRIVILEGES ON laclef.* TO 'pi'@'localhost' IDENTIFIED BY 'raspberry' WITH GRANT OPTION;
  9. Import the database by using this command (please use this SQL dump): $ mysql -u <your_username> -p <your_password> <your_database_name> < laclef-webapp.sql
  10. In another project called emoncms, we noticed that the Raspberry SD card lifetime can be extended if we turn off apache logging. To do so, please have a look at this documentation (step 6).
  11. Modify settings.php like so :
	// MySQL server credentials
  $host = "localhost";
  $username = "pi";
  $password = "raspberry";
  $database = "laclef";

Last step : go to http://raspberrypi.local/login (login : admin, password : admin) Enjoy a cup of tea (since you took a coffee on step 6 :)

If laclef is not working as expected, please consider the use of this tracker. This issue tracker is meant for bug reports and requests for improvements.

License

The code is released under The Affero General Public License version 3. http://www.gnu.org/licenses/agpl-3.0.en.html

About

Manage your users, devices, door locks, payments, RFID tags and readers with this open-source web-app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 69.7%
  • CSS 22.4%
  • PHP 7.9%