Skip to content

Commit

Permalink
chore: add dev script to Live symlinked to source
Browse files Browse the repository at this point in the history
chore: add .env generation
refactor: more Py2/3 compatibility
refactor: core module
refactor: actions dicts
  • Loading branch information
nuno-andre committed Jan 15, 2021
1 parent 37e2483 commit 58e8508
Show file tree
Hide file tree
Showing 48 changed files with 1,674 additions and 1,498 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
__pycache__/
vendor/
tests/
.bin/
.env
*.msi
.vscode/settings.json
13 changes: 7 additions & 6 deletions .vscode/.settings.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
{
"files.associations": {
"UserSettings.txt": "properties",
"*.txt": "properties",
"*.pyi": "python"
},
"files.encoding": "utf8",
"files.eol": "\n",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"editor.insertSpaces": true,
"editor.unusualLineTerminators": "auto",
"python.disableInstallationCheck": true,
"search.exclude": {
"**/.bin": true,
"**/.git": true
"**/.git": true,
"**/vendor": true
},
"[python]": {
"editor.rulers": [
72,
99
],
"editor.tabSize": 4,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true
"files.insertFinalNewline": true
},
"[properties]": {
"editor.rulers": [
Expand All @@ -31,8 +32,8 @@
"files.encoding": "utf16le",
"files.eol": "\r\n"
},
"[html]": {
"editor.tabSize": 2
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"[git-commit]": {
"editor.rulers": [
Expand Down
19 changes: 19 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Contributing to ClyphX


## Installing development environment

### Windows
Expand All @@ -9,4 +10,22 @@ PS> git clone https://github.com/nuno-andre/clyphx.git
PS> cd clyphx
PS> . .\tools\win.ps1; install-runtime
PS> python3 .\tools\vscode.py
PS> install-dev-script
```


## Vendorized libs

| package | version | description |
| ------- | ------- | ----------- |
| [`python-future`](https://github.com/PythonCharmers/python-future) | 0.18.2 | Compability layer between Python 2.7 and Python 3 |


## VSCode tasks

<kbd>Shift</kbd>+<kbd>Ctrl</kbd>+<kbd>P</kbd> &rarr; _Tasks: Run tasks_

| task | description |
| ---- | ----------- |
| `(re)start Live` | Restart Live, or start it if closed.
| `open Log.txt` | Open `Log.txt` with the default application for txt files.
Loading

0 comments on commit 58e8508

Please sign in to comment.