RETIRED, Resource service for the OpenStack Foundation site
Go to file
smarcet c0a0b39bd8 Fixed null pointer exception on SpeakerEditPermissionRequest
Serializer

Change-Id: I1b716dc498afdd116fd449c924c70b3cac647d24
2019-05-08 09:54:54 -03:00
Libs Fixed null pointer exception on SpeakerEditPermissionRequest 2019-05-08 09:54:54 -03:00
app Fixed null pointer exception on SpeakerEditPermissionRequest 2019-05-08 09:54:54 -03:00
bootstrap Upgrade Laravel Version and ORM Framework 2016-09-06 13:47:37 -03:00
config Added endpoints for speakers profile edit request 2019-05-06 18:04:11 -03:00
database Added endpoints for speakers profile edit request 2019-05-06 18:04:11 -03:00
doc/source OpenstackId resource server 2015-08-18 13:48:13 -03:00
public Upgrade Laravel Version and ORM Framework 2016-09-06 13:47:37 -03:00
resources Added endpoints for speakers profile edit request 2019-05-06 18:04:11 -03:00
storage Added doctrine L2 cache 2016-11-04 17:07:57 -03:00
tests Fixed trailing slash on pics urls 2019-05-07 18:08:02 -03:00
.env.example Migrated Mail from native to Sendgrid API 2019-04-10 19:19:11 -03:00
.gitattributes OpenstackId resource server 2015-08-18 13:48:13 -03:00
.gitignore Added new endpoint delete venue room 2018-03-06 23:42:49 -03:00
.gitreview OpenDev Migration Patch 2019-04-19 19:25:32 +00:00
artisan Upgrade Laravel Version and ORM Framework 2016-09-06 13:47:37 -03:00
bindep.txt Fixes from php7.2 migration 2019-01-09 10:28:16 -03:00
clear_logs.sh Upgrade Laravel Version and ORM Framework 2016-09-06 13:47:37 -03:00
composer.json Added endpoints for speakers profile edit request 2019-05-06 18:04:11 -03:00
composer.lock Added endpoints for speakers profile edit request 2019-05-06 18:04:11 -03:00
gulpfile.js Upgrade Laravel Version and ORM Framework 2016-09-06 13:47:37 -03:00
package.json Upgrade Laravel Version and ORM Framework 2016-09-06 13:47:37 -03:00
phpunit.xml OpenstackId resource server 2015-08-18 13:48:13 -03:00
readme.md Added endpoints for speakers profile edit request 2019-05-06 18:04:11 -03:00
requirements.txt OpenstackId resource server 2015-08-18 13:48:13 -03:00
server.php Upgrade Laravel Version and ORM Framework 2016-09-06 13:47:37 -03:00
setup.py OpenstackId resource server 2015-08-18 13:48:13 -03:00
tox.ini OpenstackId resource server 2015-08-18 13:48:13 -03:00
update_doctrine.sh Revert "Update API code to work with Presentation Moderators collection (+N)" 2019-02-21 12:21:54 -03:00
update_project.sh Upgrade Laravel Version and ORM Framework 2016-09-06 13:47:37 -03:00

readme.md

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

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