Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
General documentation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Documentation
General documentation
Commits
d905f3f9
Commit
d905f3f9
authored
4 years ago
by
Jean-Baptiste Pasquier
Browse files
Options
Downloads
Patches
Plain Diff
remove old file
parent
f74194e4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#8756
passed
4 years ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/import_documentation/devops/build_sib_application.rst
+0
-73
0 additions, 73 deletions
source/import_documentation/devops/build_sib_application.rst
with
0 additions
and
73 deletions
source/import_documentation/devops/build_sib_application.rst
deleted
100644 → 0
+
0
−
73
View file @
f74194e4
Build a SIB application from sources
====================================
Requirements
------------
- npm 6.7.0
Configure the app
-----------------
Get the code of your app (for example `the SIB
App <https://git.startinblox.com/applications/sib-app>`__:
::
$ git clone https://git.happy-dev.fr/startinblox/applications/sib-app.git /tmp/sib_app
$ cd /tmp/sib_app
Create JON file and configure the client to contact the servers:
::
{
{
"xmpp": "https://jabber.happy-dev.fr/http-bind/",
"authority": "http://api.batman.happy-dev.fr/",
"clientName": "Sib App",
"authorityName": "batman",
"publicDirectory": false,
"endpoints": {
"circles": "https://api.batman.happy-dev.fr/circles/",
"users": "https://api.batman.happy-dev.fr/users/"
},
"analytics": []
}
The parameters are:
- ``xmpp``: the BOSH access of your Prosody’s server
- ``authority``: the primary OpenID authority url, for sib-auth
- ``authorityName``: the primary OpenID authority name, for sib-auth
- ``clientName``: your client name, for sib-auth
- ``endpoints``: api points to the server to contact for each
capability
In this example we are contacting the same server
(``batman.happy-dev.fr``) for all our application capabilities. Because
we installed the server with `this configuration <install_sib_server>`__
we know it supports all capabilities we need. But we could point each
capability to different servers as long as they support it.
If you use a local development server, you should use
``http://localhost:8000/`` instead.
Build the client app
--------------------
Create your application bundle:
::
$ npm run build
The application bundle is in the ``dist`` folder, ready to be deployed
everywhere as a static file.
You can ``serve`` your application locally (assuming you already have a
SIB server setup) to check its behavior:
::
$ npm run watch
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment