Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
python-cellframe
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
cellframe
python-cellframe
Compare revisions
59f688812e111e7e1114f01b85422c27dabe1cfe to 2ad1c4617aa1820a3860b2db9a338ca9be3f73dc
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cellframe/python-cellframe
Select target project
No results found
2ad1c4617aa1820a3860b2db9a338ca9be3f73dc
Select Git revision
Swap
Target
cellframe/python-cellframe
Select target project
cellframe/python-cellframe
1 result
59f688812e111e7e1114f01b85422c27dabe1cfe
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Fix cfg 1 example
· 18fc4442
alexey.stratulat
authored
4 years ago
and
dmitriy.gerasimov
committed
4 years ago
18fc4442
Merge branch 'fix_cfg_1_example' into 'master'
· 2ad1c461
dmitriy.gerasimov
authored
4 years ago
Fix cfg 1 example See merge request
!41
2ad1c461
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cellframe-sdk
+1
-1
1 addition, 1 deletion
cellframe-sdk
dists/examples/1.Authority/MyAuth.py
+4
-4
4 additions, 4 deletions
dists/examples/1.Authority/MyAuth.py
dists/examples/1.Authority/MyAuthConf.py
+6
-6
6 additions, 6 deletions
dists/examples/1.Authority/MyAuthConf.py
with
11 additions
and
11 deletions
cellframe-sdk
@
94910007
Compare
21886ef5
...
94910007
Subproject commit
21886ef54e5b6d00c605221271530f83201b1574
Subproject commit
94910007b490c61d506b5025304348a722a3c0ef
This diff is collapsed.
Click to expand it.
dists/examples/1.Authority/MyAuth.py
View file @
2ad1c461
...
...
@@ -10,27 +10,27 @@ app_name = "MyAuth"
jsonCfg
=
MyAuthConf
.
getJsonString
(
app_name
)
try
:
init
(
jsonCfg
)
rsi
=
init
(
jsonCfg
)
except
json
.
decoder
.
JSONDecodeError
as
jex
:
sys
.
stderr
.
write
(
"
load_json_config JSONdecode :%s
"
%
jex
)
exit
(
-
1
)
setLogLevel
(
DEBUG
)
ev
=
rsi
[
1
]
server_host_name
=
configGetItem
(
"
server
"
,
"
listen_address
"
)
server_port
=
int
(
configGetItem
(
"
server
"
,
"
listen_port_tcp
"
))
sr
=
ServerCore
.
listen
(
server_host_name
,
server_port
,
0
)
sr
=
ServerCore
.
listen
(
ev
,
server_host_name
,
server_port
,
0
)
Http
.
new
(
sr
,
app_name
)
EncHttp
.
addProc
(
sr
,
"
/enc_http
"
)
Stream
.
addProcHttp
(
sr
,
"
/stream
"
)
StreamCtl
.
addProcHttp
(
sr
,
"
/stream_ctl
"
)
ev
=
Events
()
ev
.
start
()
MyAuthCmd
.
init
()
print
(
app_name
+
"
v0.1 runned on port
"
+
str
(
server_port
))
rc
=
ServerCore
.
loop
(
sr
)
rc
=
ev
.
wait
(
)
deinit
()
This diff is collapsed.
Click to expand it.
dists/examples/1.Authority/MyAuthConf.py
View file @
2ad1c461
...
...
@@ -13,10 +13,10 @@ def getJsonString(app_name, log_level="DEBUG"):
ret_tpl
=
Template
(
"""
{
"
modules
"
: [
"
Crypto
"
,
"
Server
Core
"
,
"
Http
"
,
"
HttpFolder
"
,
"
GlobalDB
"
,
"
Client
"
,
"
HttpClientSimple
"
,
"
Mempoo
l
"
,
"
Crypto
"
,
"
Events
"
,
"
Server
"
,
"
Http
"
,
"
HttpFolder
"
,
"
GlobalDB
"
,
"
Client
"
,
"
HttpClientSimple
"
,
"
EncHttp
"
,
"
Mempool
"
,
"
Stream
"
,
"
StreamCt
l
"
,
"
Chain
"
,
"
Wallet
"
,
"
ChainCSDag
"
,
"
ChainCSDagPoa
"
,
"
ChainCSDagPos
"
,
"
GDB
"
,
"
Net
"
,
"
AppCliServer
"
,
"
ChainNetSrv
"
,
"
EncHttp
"
,
"
Stream
"
,
"
StreamCtl
"
,
"
HttpSimple
"
,
"
StreamChChain
"
,
"
StreamChChainNet
"
,
"
ChainNetSrv
"
,
"
HttpSimple
"
,
"
StreamChChain
"
,
"
StreamChChainNet
"
,
"
StreamChChainNetSrv
"
],
"
Core
"
: {
"
config_dir
"
:
"
${tmp_dir}
"
,
...
...
@@ -61,10 +61,10 @@ def getJsonString(app_name, log_level="DEBUG"):
"
name_cfg_files
"
: [
"
main
"
],
"
conf_files
"
:{
"
main
"
: {
"
general
"
:
{
"
id
"
:
"
0x
F
00000000000000F
"
,
"
chain
"
:{
"
id
"
:
"
0x0
A
0000000000000F
"
,
"
name
"
:
"
main
"
,
"
consensus
"
:
"
dag
-
poa
"
,
"
consensus
"
:
"
dag
_
poa
"
,
"
datum_types
"
: [
"
ca
"
,
"
transaction
"
,
"
token
"
,
"
token_update
"
,
"
emission
"
,
"
shard
"
]
},
"
dag
"
:{
...
...
This diff is collapsed.
Click to expand it.