smarcet 4432a5f2b9 Import assets from MUX
Added new endpoints
POST api/v1/summits/{id}/presentations/all/import/mux

payload
* mux_token_id ( string|required)
* mux_token_secret ( string|required)
* email_to (optional|email)

required scopes

REALM_URL/summits/write
REALM_URL/summits/write-event
REALM_URL/summits/write-presentation

Change-Id: If3af7466f5c2fd1a38e1129fecd7e0b86312590e
Signed-off-by: smarcet <smarcet@gmail.com>
2021-06-04 16:28:20 -03:00
2021-06-04 16:28:20 -03:00
2021-04-23 13:06:50 -03:00
2021-06-04 16:28:20 -03:00
2015-08-18 13:48:13 -03:00
2020-11-30 15:09:40 -03:00
2021-06-04 16:28:20 -03:00
2016-11-04 17:07:57 -03:00
2021-06-04 16:28:20 -03:00
2020-11-30 15:09:40 -03:00
2015-08-18 13:48:13 -03:00
2019-04-19 19:25:32 +00:00
2019-01-09 10:28:16 -03:00
2021-06-04 16:28:20 -03:00
2021-06-04 16:28:20 -03:00
2015-08-18 13:48:13 -03:00
2015-08-18 13:48:13 -03:00
2015-08-18 13:48:13 -03:00

OpenStackId Resource Server

Prerequisites

* LAMP/LEMP environment
* PHP >= 7.1
* Redis
* composer (https://getcomposer.org/)

Install

run following commands on root folder

  • curl -s https://getcomposer.org/installer | php
  • php composer.phar install --prefer-dist
  • php composer.phar dump-autoload --optimize
  • php artisan migrate --env=YOUR_ENVIRONMENT
  • php artisan db:seed --env=YOUR_ENVIRONMENT
  • phpunit --bootstrap vendor/autoload.php
  • php artisan doctrine:generate:proxies
  • php artisan doctrine:clear:metadata:cache
  • php artisan doctrine:clear:query:cache
  • php artisan doctrine:clear:result:cache
  • php artisan doctrine:ensure:production
  • php artisan route:clear
  • php artisan route:cache
  • give proper rights to storage folder (775 and proper users)
  • chmod 777 vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer

Permissions

Laravel may require some permissions to be configured: folders within storage and vendor require write access by the web server.

create SS schema

php artisan doctrine:schema:create --sql --em=model > ss.sql

validate SS schema

php artisan doctrine:schema:validate

Doctrine Migrations

For Config Storage

create new migration

php artisan doctrine:migrations:generate --connection=config --create=

check status

php artisan doctrine:migrations:status --connection=config

run

php artisan doctrine:migrations:migrate --connection=config

For Model Storage

create new migrations

php artisan doctrine:migrations:generate --connection=model --create=

check status

php artisan doctrine:migrations:status --connection=model

run

php artisan doctrine:migrations:migrate --connection=model

Queues

php artisan queue:work

message broker

php artisan queue:work message_broker

Description
RETIRED, Resource service for the OpenStack Foundation site
Readme 12 MiB