Skip to content

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
sunho committed Jan 25, 2019
1 parent 73b14de commit 20feb0d
Show file tree
Hide file tree
Showing 555 changed files with 72,815 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
client/Assets/ExternalAssets/* linguist-vendored
174 changes: 174 additions & 0 deletions .gitignore
@@ -0,0 +1,174 @@
/game-server/target
/specbot/target
**/*.rs.bk

[Ll]ibrary/
[Tt]emp/
[Oo]bj/
[Bb]uild/
[Bb]uilds/
Assets/AssetStoreTools*

# Visual Studio cache directory
.vs/

# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/
.consulo/
*.swf
*.unityproj
*.sln
*.suo
*.tmp
*.csproj
*.user
*.userprefs
*.pidb
*.booproj
*.svd
*.pdb
*.opendb
*.VC.db

# Unity3D generated meta files
*.pidb.meta
*.pdb.meta

# Unity3D Generated File On Crash Reports
sysinfo.txt

# Builds
*.apk
*.unitypackage

# Crashlytics generated file
Assets/StreamingAssets/crashlytics-build.properties

/tests/node_modules/

/lobby-server/*.yml
/lobby-server/*.yaml
/lobby-server/lobby.exe
/lobby-server/lobby

/tslib/node_modules/
/chatbot/node_modules/
/chatbot/config/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

schema.sql
22 changes: 22 additions & 0 deletions README.md
@@ -0,0 +1,22 @@
![](logo.png)

# Minda

Minda is an online multiplayer [abalone](https://en.wikipedia.org/wiki/Abalone_(board_game)), available on Windows and mac os. It supports custom map, spectator mode and sharding.

## Build

### Client

Open /client in Unity 2018.

### Server

#### Lobby Server
```
cd lobby-server && go build
```
#### Game Server
```
cd game-server && cargo build
```
13 changes: 13 additions & 0 deletions ai/Pipfile
@@ -0,0 +1,13 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]

[packages]
requests = "*"
tensorflow = "==1.10.0"

[requires]
python_version = "3.6"

0 comments on commit 20feb0d

Please sign in to comment.