Skip to content

fingoweb/shoper-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

120 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RAS

Project info

  • Laravel 10.26
  • PHP 8.2

Docker

Building image:

docker build --target prod -t ras-shoper-plugin .

Starting image:

docker run --rm -it --env-file .env -p 8000:80 ras-shoper-plugin

Starting developer environment:

./start-docker-dev

Setup:

  • Fill environment variables (copy .env.example file to .env before):
    • Database host, port and credentials
    • Database type (mysql or pgsql)
    • Appstore credentials
    • APP_URL (api url, without trailing slash)
    • APP_KEY (two ways)
      • Generate it with command php artisan key:generate from the container
      • Generate it manually, using the command shuf -er -n32 {a..z} {0..9} | tr -d '\n' | base64 then change the APP_KEY= line to APP_KEY=base64:key where key is the output from the above command
    • Run the migrations with command php artisan migrate --force

Project has endpoint /api/health which can be used for healthchecks

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • PHP 78.1%
  • Blade 11.2%
  • CSS 5.2%
  • Dockerfile 3.0%
  • JavaScript 1.3%
  • Shell 1.2%