Skip to content

Commit

Permalink
Add inital go rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
ArcticXWolf committed Apr 10, 2021
1 parent ad21f88 commit 44c9635
Show file tree
Hide file tree
Showing 62 changed files with 371 additions and 4,638 deletions.
36 changes: 27 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
config.yml
__pycache__
.venv
/engines/*
!/engines/axwchessbot
!/engines/README.md
/chatterer/events/opening_db/*.tsv
.vscode
.coverage
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
# vendor/

### Go Patch ###
/vendor/
/Godeps/

### vscode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
52 changes: 52 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "Python: Lichess-Bot",
"type": "python",
"request": "launch",
"program": "lichess-bot.py",
"args": [],
"console": "integratedTerminal"
},
{
"name": "Python: Bench",
"type": "python",
"request": "launch",
"program": "engines/axwchessbot/main.py",
"args": [
"--bench"
],
"console": "integratedTerminal"
},
{
"name": "Python: UCI",
"type": "python",
"request": "launch",
"program": "engines/axwchessbot/main.py",
"args": [],
"console": "integratedTerminal"
},
{
"name": "Python: Tests",
"type": "python",
"request": "launch",
"program": "engines/axwchessbot/main.py",
"args": [
"--test=True"
],
"console": "integratedTerminal",
"justMyCode": false
}
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"python.linting.enabled": true,
"python.pythonPath": ".venv/bin/python"
}
145 changes: 0 additions & 145 deletions ColorLogger.py

This file was deleted.

11 changes: 0 additions & 11 deletions Dockerfile

This file was deleted.

Loading

0 comments on commit 44c9635

Please sign in to comment.