Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grin++ CLI + Nostr (NOT SAFE TO USE!!) WIP #7

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 49 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,51 @@
node_modules
.DS_Store
.huskyrc.json
out
log.log
**/node_modules
*.pyc
*.vsix
**/.vscode/.ropeproject/**
**/testFiles/**/.cache/**
*.noseids
.nyc_output
.vscode-test
__pycache__
npm-debug.log
**/.mypy_cache/**
!yarn.lock
coverage/
cucumber-report.json
**/.vscode-test/**
**/.vscode test/**
**/.vscode-smoke/**
**/.venv*/
port.txt
precommit.hook
pythonFiles/lib/**
debug_coverage*/**
languageServer/**
languageServer.*/**
bin/**
obj/**
.pytest_cache
tmp/**
.python-version
.vs/
test-results*.xml
xunit-test-results.xml
build/ci/performance/performance-results.json
!build/
debug*.log
debugpy*.log
pydevd*.log
nodeLanguageServer/**
nodeLanguageServer.*/**
dist/**
# translation files
*.xlf
package.nls.*.json
l10n/
Thumbs.db
*.log
*.autogenerated
/dist
**/.vscode**/
build/**
8 changes: 0 additions & 8 deletions README.md

This file was deleted.

5 changes: 5 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

pip install -r requirements.txt
cd src
.venv/bin/python -m nuitka --standalone --onefile --nofollow-import-to=*.tests --nofollow-import-to=*.distutils --nofollow-import-to=tornado.test --assume-yes-for-downloads --output-filename=GrinPP --output-dir="../build" --enable-console --remove-output --warn-unusual-code --include-package=asn1crypto,certifi,cffi,charset_normalizer,click,coincurve,colorama,commonmark,cryptography,idna,psutil,pycparser,pygments,pynostr,requests,rich,shellingham,timeago,tlv8,tornado,typer,urllib3 --include-module=apps,modules --noinclude-pytest-mode=nofollow --noinclude-unittest-mode=nofollow --noinclude-setuptools-mode=nofollow --noinclude-custom-mode=distutils:nofollow --product-name="Grin++ CLI" --product-version="0.2.0" --file-description="Fast, Private and Secure Grin Wallet" src/cli.py
32 changes: 0 additions & 32 deletions build/release.js

This file was deleted.

32 changes: 0 additions & 32 deletions cli.js

This file was deleted.

45 changes: 0 additions & 45 deletions lib/GrinPP.class.js

This file was deleted.

79 changes: 0 additions & 79 deletions lib/api/SendToHTTP.js

This file was deleted.

66 changes: 0 additions & 66 deletions lib/api/WalletAPI.js

This file was deleted.

30 changes: 0 additions & 30 deletions lib/cli/DateFormatter.js

This file was deleted.

Loading