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
1
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
Commits
f86a0286
Commit
f86a0286
authored
3 years ago
by
alexey.stratulat
Committed by
dmitriy.gerasimov
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Hotfix 5281 - Correction of test number 0.
parent
8877210a
No related branches found
Branches containing commit
No related tags found
1 merge request
!70
Hotfix 5281 - Correction of test number 0.
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cellframe-sdk
+1
-1
1 addition, 1 deletion
cellframe-sdk
dists/examples/0.Beginning/MyChains.py
+3
-0
3 additions, 0 deletions
dists/examples/0.Beginning/MyChains.py
dists/examples/3.Stock/MyStockConf.py
+3
-0
3 additions, 0 deletions
dists/examples/3.Stock/MyStockConf.py
with
7 additions
and
1 deletion
cellframe-sdk
@
d14fa47f
Compare
0bd76117
...
d14fa47f
Subproject commit
0bd76117bf28dd4e8e6dd14305c16983d0ce8e21
Subproject commit
d14fa47f7bb4dfc30fd73d8c645d58ccff24beef
This diff is collapsed.
Click to expand it.
dists/examples/0.Beginning/MyChains.py
+
3
−
0
View file @
f86a0286
...
...
@@ -5,7 +5,10 @@ import os
app_name
=
"
MyChains
"
tmp_dir
=
os
.
getcwd
()
+
"
/tmp
"
#os.mkdir(tmp_dir)
var_dir
=
os
.
getcwd
()
+
"
/var
"
if
os
.
path
.
isdir
(
var_dir
+
"
/log
"
)
is
False
:
os
.
mkdir
(
var_dir
+
"
/log
"
)
json_string
=
"""
{
"
modules
"
: [
"
Crypto
"
,
"
Events
"
,
"
Server
"
,
"
Http
"
,
"
HttpFolder
"
,
"
GlobalDB
"
,
"
Client
"
,
"
HttpClientSimple
"
,
"
Mempool
"
,
...
...
This diff is collapsed.
Click to expand it.
dists/examples/3.Stock/MyStockConf.py
+
3
−
0
View file @
f86a0286
...
...
@@ -4,6 +4,9 @@ from string import Template
def
getJsonString
(
app_name
):
tmp_dir
=
os
.
getcwd
()
+
"
/tmp
"
var_dir
=
os
.
getcwd
()
+
"
/var
"
if
os
.
path
.
isdir
(
var_dir
)
is
False
and
os
.
path
.
isdir
(
var_dir
+
"
/log
"
)
is
False
:
os
.
mkdir
(
var_dir
)
os
.
mkdir
(
var_dir
+
"
/log
"
)
ret_tpl
=
Template
(
"""
{
"
modules
"
: [
...
...
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