Mirror of l'Hubl
Go to file
Jean-Baptiste Pasquier 33e2278ffb
Merge branch 'feat/manager_deploy' of git.happy-dev.fr:startinblox/applications/sib-app into project-integration-manager
2019-12-02 14:04:28 +01:00
.gitlab issue and merge request templates 2019-05-03 11:27:32 +02:00
src Merge branch 'feat/manager_deploy' of git.happy-dev.fr:startinblox/applications/sib-app into project-integration-manager 2019-12-02 14:04:28 +01:00
.babelrc fix: ES6 modules dependencies 2019-01-07 16:39:06 +01:00
.gitignore feat: cleaned old building methods 2019-11-14 17:59:57 +01:00
.gitlab-ci.yml cicd: added staging banch for autodeploy 2019-11-20 23:02:44 +01:00
LICENSE Add LICENSE 2018-11-01 20:29:31 +00:00
README.md doc: changed account login sentence 2019-11-16 16:09:55 +01:00
package-lock.json feature: copied statics to dist 2019-11-16 18:10:05 +01:00
package.json feature: copied statics to dist 2019-11-16 18:10:05 +01:00

README.md

SiB App

SiB App is the magic tool that allows the Happy Dev network to thrive in a decentralized way.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

To install SiB App, you'll need:

  • A SIB server with the appropriate modules
  • A Prosody Server (with appropriate modules
  • A SMTP Server (optional)
  • NodeJS on your machine

Before diving in you have to check your SIB server supports the following LDP packages:

  • djangoldp_project: 0.1.12
  • djangoldp_uploader: 0.0.5
  • djangoldp_circle: 0.1.9
  • djangoldp_notification: 0.1.4
  • djangoldp_account: 0.2.12
  • djangoldp_skill: 0.1.1
  • djangoldp_joboffer: 0.1.1
  • djangoldp_conversation: 0.2.1
  • djangoldp_profile: 0.1.4
  • djangoldp_invoice: 0.1.0
  • oidc_provider: 'git+https://github.com/jblemee/django-oidc-provider.git@develop'

Those packages are given with the last stable version tested.

Refer to the documentation to install a SIB server with this configuration.

Configure your SIB server

Create a Client ID for Prosody & Client

  • Login on localhost:8000/admin/ with the admin account you configured
  • Add a Clients on OpenID Connect Provider section
    • Name it as you wish
    • Client type: Public
    • Response types: id_token token (Implicit Flow)
    • Redirect URIs:
      http://localhost:3000
      http://127.0.0.1:3000
      http://0.0.0.0:3000
      http://localhost:8000
      https://myserver.com
      
  • Keep the 6-digits newly create Client ID somewhere

Build the application

In order to find your server(s) the client application needs to be assembled with the proper configuration.

Get the code of the SIB app on your machine:

$ git clone ...

Then create a config.json with all the the capabilities the SIB App requires. Which are:

  • businessproviders
  • circles
  • groups
  • joboffers
  • projects
  • skills
  • users

The documentation explains the details of this file but for convienence a config.sample.json exists in the source.

Then build your new SIB App:

$ npm run build

The application bundle is in the dist folder, ready to be deployed everywhere as a static file.

Built With