Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 680 Bytes

readme.md

File metadata and controls

13 lines (11 loc) · 680 Bytes

Veganresan API

A Lumen REST-API for the "Veganresan" mobile application. Endpoints for adding and listing meals with authorization is available.

Installation

  1. Install all dependencies composer install
  2. Ensure /storage folder is writable by the webserver
  3. Create a sqlite database file touch database/database.sqlite
  4. Copy .env.example to .env and update all variables
  5. Copy app-versions.example.json to /storage/app/app-versions.json
  6. Ensure symlink from /public/storage to /storage/app/public exists, if not, create it: ln -s ../storage/app/public/ ./public/storage
  7. Run migrations php artisan migrate