Skip to content

killua-eu/glued

 
 

Repository files navigation

Glued

Installation

Run

bash <(curl https://raw.githubusercontent.com/vaizard/glued/master/install.sh)

and follow the on-screen instructions. Once the installation succeeds, go to https://example.com/glued/public/

Structure

  • vendor (composer pulled dependencies)
  • glued (the app)
    • bootstrap.php (main file)
    • dependencies.php (the DIC definition)
    • middleware.php (registers all middleware)
    • routes.php (registers all routes)
    • settings.php (cofiguration of your glued instance)
    • Classes/* (glued's classes)
    • Controllers/* (glued's controllers)
    • Middleware/* (glued's middleware except that wich is loaded via DIC/composer)
    • Views/* (twig-based views)
  • public (document root for app users)
    • index.php (just includes glued/bootstrap.php)
    • all public files (css, images, js, etc.)
  • extras (nginx configuration and db dump)
  • logs (make sure its writable by php)

Contribute

Contributions welcomed, just fork Glued an make your first PR! Below a bunch of tips to help you start.

UI

Currently Glued relies on

Hack modular-admin-html

git clone https://github.com/vaizard/glued-modular-admin.git
cd modular-admin-html
npm install             # pull in dependencies
npm audit fix           # security fixes
npm run build           # create the static build (content in /dist directory)

Hack rjsf & addons

git clone http://github.com/mozilla-services/react-jsonschema-form
cd react-jsonschema-form
npm install
npm run dist

git clone https://github.com/RxNT/react-jsonschema-form-extras
cd react-jsonschema-form-extras
npm install
npm run dist

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 67.6%
  • CSS 18.0%
  • PHP 9.7%
  • HTML 4.0%
  • Other 0.7%