Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
duniter
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
Monitor
Service Desk
Analyze
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
nodes
typescript
duniter
Commits
a5ce9138
Commit
a5ce9138
authored
7 years ago
by
Cédric Moreau
Browse files
Options
Downloads
Patches
Plain Diff
[fix]
#1040
BMA interface was not plugged on startup
parent
2fcd9b09
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
index.ts
+3
-1
3 additions, 1 deletion
index.ts
with
3 additions
and
1 deletion
index.ts
+
3
−
1
View file @
a5ce9138
...
@@ -5,6 +5,7 @@ import {ConfDTO} from "./app/lib/dto/ConfDTO"
...
@@ -5,6 +5,7 @@ import {ConfDTO} from "./app/lib/dto/ConfDTO"
import
{
ProverDependency
}
from
"
./app/modules/prover/index
"
import
{
ProverDependency
}
from
"
./app/modules/prover/index
"
import
{
KeypairDependency
}
from
"
./app/modules/keypair/index
"
import
{
KeypairDependency
}
from
"
./app/modules/keypair/index
"
import
{
CrawlerDependency
}
from
"
./app/modules/crawler/index
"
import
{
CrawlerDependency
}
from
"
./app/modules/crawler/index
"
import
{
BmaDependency
}
from
"
./app/modules/bma/index
"
;
const
path
=
require
(
'
path
'
);
const
path
=
require
(
'
path
'
);
const
_
=
require
(
'
underscore
'
);
const
_
=
require
(
'
underscore
'
);
...
@@ -102,7 +103,8 @@ const DEFAULT_DEPENDENCIES = MINIMAL_DEPENDENCIES.concat([
...
@@ -102,7 +103,8 @@ const DEFAULT_DEPENDENCIES = MINIMAL_DEPENDENCIES.concat([
{
name
:
'
duniter-plugin
'
,
required
:
pluginDependency
},
{
name
:
'
duniter-plugin
'
,
required
:
pluginDependency
},
{
name
:
'
duniter-prover
'
,
required
:
ProverDependency
},
{
name
:
'
duniter-prover
'
,
required
:
ProverDependency
},
{
name
:
'
duniter-keypair
'
,
required
:
KeypairDependency
},
{
name
:
'
duniter-keypair
'
,
required
:
KeypairDependency
},
{
name
:
'
duniter-crawler
'
,
required
:
CrawlerDependency
}
{
name
:
'
duniter-crawler
'
,
required
:
CrawlerDependency
},
{
name
:
'
duniter-bma
'
,
required
:
BmaDependency
}
]);
]);
const
PRODUCTION_DEPENDENCIES
=
DEFAULT_DEPENDENCIES
.
concat
([
const
PRODUCTION_DEPENDENCIES
=
DEFAULT_DEPENDENCIES
.
concat
([
...
...
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