Mirror of l'Hubl
Go to file
Jean-Baptiste Pasquier d2c105ec2a Merge branch 'master' into release/hubl-722 2020-09-16 21:58:52 +02:00
.gitlab fix new instance template 2020-07-28 10:13:49 +00:00
cypress minor: Implement core 0.10 2020-06-18 20:02:54 +02:00
docker feature: my profile 2020-05-27 06:44:54 +00:00
src Merge branch 'master' into release/hubl-722 2020-09-16 21:58:52 +02:00
.babelrc fix: ES6 modules dependencies 2019-01-07 16:39:06 +01:00
.gitignore Feature/cypressio 2020-05-19 13:13:30 +00:00
.gitlab-ci.yml cicd: toulouse 2020-09-08 10:17:44 +00:00
LICENSE Add LICENSE 2018-11-01 20:29:31 +00:00
README.md Update README.md 2020-07-09 13:26:31 +00:00
STYLING.md feature: my profile 2020-05-27 06:44:54 +00:00
client.sample.css feature: css variables 2020-05-11 18:20:13 +00:00
client.sample.happy-dev.css feature: notification full height 2020-06-29 14:30:42 +02:00
config.sample.federated.json Fixes & Hubl branding 2020-05-08 13:27:44 +00:00
config.sample.json Feature/cypressio 2020-05-19 13:13:30 +00:00
cypress.json Feature/cypressio 2020-05-19 13:13:30 +00:00
package-lock.json Feature/cypressio 2020-05-19 13:13:30 +00:00
package.json feature: private circles 2020-05-19 18:22:00 +02:00

README.md

Hubl

Hubl is the magic tool that allows the Freelance 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.

Prerequisites

To install Hubl, you'll need:

  • A Hubl Server (djangoldp>=0.7.11) 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 Hubl Server supports the following LDP packages:

Those packages are given with the last stable version tested.

Refer to the documentation to install a Hubl Server with this configuration.

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 Hubl on your machine:

git clone ...
cd hubl
npm install

Then create a config.json based on your needs, see Mandatory and Optional Modules on this page. For convienence a config.sample.json exists in the source.

Federated Hubl needs to use config.sample.federated.json example.

You can quickly update your API URI from the samples:

$ sed 's/http:\/\/localhost:8000/https:\/\/api.your-server.startinblox.com/' config.sample.json  > config.json

Then build your new Hubl:

npm run build

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

Developpers

Serve, watch files & rebuild on change with this command:

npm run watch

Mandatory modules

By default, a Hubl includes only individual chat modules.

On Server: djangoldp_account, djangoldp_profile, djangoldp_notification, djangoldp_skill, djangoldp_upload, oidc_provider packages

On config.json:

{
  "xmpp": "https://jabber.happy-dev.fr/http-bind/",
  "authority": "http://localhost:8000/",
  "endpoints": {
    "skills": "http://server.url/skills/",
    "users": "http://server.url/users/",
    "uploads": "http://server.url/upload/"
  }
}

Where:

  • xmpp is your Prosody with appropriate modules configured on.
  • authority is the OpenID Provider. Usually, if you use djangoldp-account it's the same as your djangoldp server.
  • endpoints.users is the API endpoints for Users on your djangoldp server.

Optional personalisation

On config.json:

  "clientName": "Hubl",
  "clientFavicon": "/images/favicon.png",
  "clientLogo": "/images/logo.png",
  "clientLogoHeight": "32px",
  "clientCSS": "/path/to/custom.css",
  "authorityName": "djangoldp-server-name"

Where:

  • clientName is the name of your Hubl.
  • clientFavicon is an URL to a distant favicon
  • clientLogo is an URL to a distant logo for your client
  • clientLogoHeight allow a quick fix to manage different height logos
  • clientCSS is an URL to a distant CSS that'll be the last one loaded by the Hubl
  • authorityName is a visual name of your OpenID Provider

Optional modules

Analytics

Hubl support Google or Matomo as analytics trackers. To use them, add to your config.json:

  "analytics": [
    {
      "type": "matomo", //Or "google"
      "url": "https://my-personal.matomo.cloud/",
      "id": "1"
    }
  ]

Circles

Circles are a public group chat. To activate them, you need:

On Server: djangoldp_circle packages

On config.json:

  "endpoints": {
    "circle": "http://server.url/circles/"
  }

Dashboard

Dashboard includes card generation from HTML. To activate them, you need:

On Server: djangoldp_dashboard packages

On config.json:

  "endpoints": {
    "dashboard": "http://server.url/dashboard/"
  }

A sample fixture can be loaded with ./manage.py loaddata path/to/djangoldp_dashboard/fixtures/sample.json.

Events

Events allow to create and manage instance-level evenement. To activate them, you need:

On Server: djangoldp_event, djangoldp_upload packages

On config.json:

  "endpoints": {
      "events": "http://server.url/events/",
      "typeevents": "http://server.url/typeevents/",
    "uploads": "http://server.url/upload/"
  }

Project

Project are a private group chat including Customer and Business Provider management. To activate them, you need:

On Server: djangoldp_project packages

On config.json:

  "endpoints": {
    "projects": "http://server.url/projects/",
    "customers": "http://server.url/customers/",
    "businessproviders": "http://server.url/businessproviders/",
    "skills": "http://server.url/skills/"
  }

Users Directory

Directory includes a listing of each users of your app and editable individual profile. To activate them, you need:

On Server: djangoldp_skill, djangoldp_upload packages

On config.json:

  "publicDirectory": true,
  "endpoints": {
    "groups": "http://server.url/groups/",
    "skills": "http://server.url/skills/",
    "uploads": "http://server.url/upload/"
  }

Job Offers

Job Offers includes a job board with conversation. To activate them, you need:

On Server: djangoldp_joboffer, djangoldp_skill, djangoldp_upload, djangoldp_conversation packages

On config.json:

  "endpoints": {
    "joboffers": "http://server.url/joboffers/",
    "skills": "http://server.url/skills/",
    "uploads": "http://server.url/upload/"
  }

Use with docker

Multi services

Run with a local binding on localhost:

docker-compose build
docker-compose up -d client server

Use in CI context:

docker-compose -f docker-compose.yml build
docker-compose -f docker-compose.yml up -d client server
docker-compose -f docker-compose.yml run --rm e2e

Build and push the server to registry:

docker build -f docker/djangoldp.docker --build-arg serve="http://localhost:8000" -t registry.startinblox.com/applications/hubl/server:0.1 .
docker push registry.startinblox.com/applications/hubl/server:0.1

Note: within a Kubernetes pod all services are bound to localhost.

Built With