umbrella2/skeleton

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (v3.12) of this package.

Maintainers

Package info

github.com/acantepie/umbrella-skeleton

Language:Twig

Type:project

pkg:composer/umbrella2/skeleton

Statistics

Installs: 103

Dependents: 0

Suggesters: 0

Stars: 6

This package is auto-updated.

Last update: 2021-11-21 19:18:09 UTC


README

Requirements

How to install

composer create-project umbrella2/skeleton:"dev-master" my_app
cd my_app
  • If vendor install fails with error [LogicException] No lockfile found. Unable to read locked packages, run composer install on you new project directory
  • If composer ask to install recipes, always answer no

Configure your database :

Edit DATABASE_URL env var in the .envfile to use your own credentials. You can initialize db with followings commands :

php bin/console doctrine:database:create
php bin/console doctrine:schema:update --force

Install node dependencies and build assets :

yarn install
yarn build
yarn copy-ckeditor # Ignore this line if you don't use CKEditorType on your project

Run php -S localhost:8000 -t public/ to use the built-in PHP web server or configure a web server like Nginx or Apache to run the application.

About umbrella framework

Go to umbrella-admin-demo to learn more about feature of Umbrella framwork.

Online demo.