Skip to content

Commit

Permalink
first basic functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayerch1 committed Apr 12, 2021
1 parent fec2aac commit 8da7e69
Show file tree
Hide file tree
Showing 11 changed files with 850 additions and 0 deletions.
138 changes: 138 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
# sensitive data
**/topGGToken.txt
**/topGGToken.txt.bak
**/topGGSecret.txt
**/topGGSecret.txt.bak
**/token.txt
**/log.txt
**/proposals.txt
**/settings.json
**/servers.json
**/servers_test.json
**/db_username.txt
**/db_password.txt
**/db_host.txt
**/whitelist.txt

calendar_bak.json
servers_bak.json

tmp/
data/db/**

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

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib64/
parts/
sdist/
var/
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/

15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// 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: Aktuelle Datei",
"type": "python",
"request": "launch",
"program": "remindmeBot.py",
"console": "integratedTerminal"
}
]
}
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM python:3

RUN apt-get update && apt-get -y install ffmpeg

RUN pip3 install discord.py discord-py-slash-command pytz tzdata PyNaCl

WORKDIR /code
CMD ["python", "remindmeBot.py"]
Loading

0 comments on commit 8da7e69

Please sign in to comment.