bedita/app

BEdita base WebApp

Installs: 44

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 6

Forks: 1

Open Issues: 0

Type:cakephp-app

v2.3.1 2022-09-07 15:13 UTC

This package is auto-updated.

Last update: 2024-04-04 09:32:41 UTC


README

Run tests Code Coverage

This is the BEdita skeleton web app.

Requirements

  1. PHP 7.4, 8.0, 8.1 or 8.2
  2. Download latest Composer or update via composer self-update.

Installation

Simply run

composer create-project bedita/app

In case you want to use a custom app dir name (e.g. /myapp/):

composer create-project bedita/app myapp

You can now either use your machine's webserver to view the default home page, or start up the built-in webserver with:

bin/cake server

Then visit http://localhost:8765 to see the welcome page.

Configuration

Read and edit the environment specific in config/.env in particular:

  • BEDITA_API and BEDITA_API_KEY to setup API endpoint
  • DEBUG set to "true" or "false"to activate/deactivate debug mode

Other environment agnostic settings can be changed in config/app.php.

You may then check http://localhost:8765/credits or http://localhost:8765/{folder} where {folder} is a folder uname on you BEdita4 project.

Layout

The app skeleton uses Milligram (v1.3) minimalist CSS framework by default. You can, however, replace it with any other library or custom styles.

I18n

Internationalization behavior is not enabled by default.

To activate:

  • in config/app.php uncomment I18n key and setup your wanted configuration
  • in src/Application.php uncomment lines to add I18nMiddleware in ::middleware() method
  • in config/routes.php ucomment lines with 'routeClass' => 'BEdita/I18n.I18nRoute' to enable routing rules

After that evey URL path will have a language prefix like /en automatically generated. Using I18nHelper methods you may then handle URLs or object properties accordingly.