Find a file
2019-05-22 21:17:53 +02:00
.test CI Syntaxchecks 2019-01-20 00:00:17 +01:00
bin some tweaks 2019-05-22 21:17:53 +02:00
config some tweaks 2019-05-22 21:17:53 +02:00
cont fixed remember me not working 2019-05-22 20:52:06 +02:00
fonts added hosting for own fonts (no google integration 2019-05-19 19:55:51 +02:00
install manual merge 2019-05-19 18:37:00 +02:00
php some tweaks 2019-05-22 21:17:53 +02:00
pic manual merge 2019-05-19 18:37:00 +02:00
style new themes.... if this gets merged anyway :D 2019-05-22 14:22:24 +02:00
.gitignore added gitignore 2018-10-26 11:15:46 +02:00
.gitlab-ci.yml CI Syntaxchecks 2019-01-20 00:00:17 +01:00
.htaccess prepared autocomplete 2019-05-19 20:31:37 +02:00
AUTHORS initial commit 2018-10-24 15:00:27 +02:00
index.php added hosting for own fonts (no google integration 2019-05-19 19:55:51 +02:00
LICENSE initial commit 2018-10-24 15:00:27 +02:00
README.md added installation instructions 2018-10-26 18:37:02 +02:00
version.json added version.json, $version variable via version.php 2019-01-23 15:43:17 +01:00
version.php added version.json, $version variable via version.php 2019-01-23 15:43:17 +01:00

Requirements

Apache Modules:

  • mod-rewrite

Packages

  • php7
  • php7-mysql

Sample Apache Config

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    ServerName shopping.example.com

    DocumentRoot /var/www/html/shopping-list
    <Directory /var/www/html/shopping-list>

      	AllowOverride All
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

Installation Instructions

  • create a new mysql-database. Please use utf8_general_ci as your collation.

  • create a new mysql-user that can edit the database.

  • Download the latest release. You can download it here (tar.gz) or here (zip)

  • unpack the archive and copy its content to /var/www/html/shopping-list

  • grant your web server permission to write the config-file

chown www-data:www-data /var/www/html/shopping-list/config/config.php
  • visit the address of your web browser, you will be redirected to the installation page
  • insert your database information and create your login user
  • thats it, you are good to go. You may login now!