cvar1984/slim

slim 4 sekeleton with parallax

Maintainers

Details

github.com/Cvar1984/slim

Source

Issues

Fund package maintenance!
paypal.me/Cvar1984

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:CSS

Type:application

dev-master 2020-06-17 19:09 UTC

This package is auto-updated.

Last update: 2020-06-19 11:37:08 UTC


README

CodeFactor PHP Composer License

Slim 4 skeleton with basic parallax homepages

demo

heroku

install to webroot

clone to your htdocs

git clone <link>

move everything to /var/www/html (webroot)

then go to /var/www/html and install depencies

composer install --no-dev
yarn install

edit /var/www/html/app/middleware.php

comment this

// $app->setBasepath();

start your webservice like apache or something like

php -S 127.0.0.1:8080 -t /var/www/html/public

install to webroot/custom

clone to your htdocs

git clone <link>

move everything to /var/www/html/custom (webroot)

then go to /var/www/html/custom and install depencies

composer install --no-dev
yarn install

edit /var/www/html/app/middleware.php do this

$app->setBasepath('/custom');

start your webservice like apache or something like

php -S 127.0.0.1:8080 -t /var/www/html/custom/public