Skip to content

Commit

Permalink
Merge pull request #52 from aahnik/dev
Browse files Browse the repository at this point in the history
Refactor code, and allow plugin system. make live sync a free public feature
  • Loading branch information
aahnik authored Apr 20, 2021
2 parents b455042 + cdf98ce commit ee162d8
Show file tree
Hide file tree
Showing 27 changed files with 2,876 additions and 215 deletions.
11 changes: 11 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Contributing Guidelines

1. Read the README and documentation thoroughly. Also watch relavant videos if availaible.
2. Create an issue with a bug or a feature request.
3. Contact me on telegram https://telegram.me/aahnikdaw and discuss the changes you want to make.
4. Follow the code style of the project.
5. You are recommended to read these additional guidelines about Pull Requests.

- [The (written) unwritten guide to pull requests](https://www.atlassian.com/blog/git/written-unwritten-guide-pull-requests)
- [How to write the perfect pull request](https://github.blog/2015-01-21-how-to-write-the-perfect-pull-request/)
- [Open Source Pull Request Guidelines](https://opensource.creativecommons.org/contributing-code/pr-guidelines/)
3 changes: 2 additions & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
Expand All @@ -9,4 +10,4 @@ community_bridge: # Replace with a single Community Bridge project-name e.g., cl
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: ['https://aahnik.dev/support']
custom: ['https://aahnik.dev/support']
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: true
contact_links:
- name: Read Documentation
url: https://aahnik.github.io/tgcf/
about: Read the guides and tutorials
- name: Ask a Question or Discuss
url: https://github.com/aahnik/tgcf/discussions/new
about: You may ask a question, get help about errors or start a discussion.
15 changes: 15 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Before Creating a pull request, please read the contributing guidelines thoroughly.

<!-- A reference to a related issue in your repository. -->

<!-- A description of the changes proposed in the pull request. -->

<!-- @mentions of the person or team responsible for reviewing proposed changes. -->

I have fully read and understood the terms and conditions laid down in the general [Contributor License Agreement](https://aahnik.github.io/aahnik/CLA.html)

- [ ] I agree to distribute my code contributions under MIT License, and will not change it in the future.
- [ ] I agree that any contribution once merged, cannot be taken back by me.
- [ ] I will abide by the Code of Conduct
- [ ] I understand that the decision of the maintainer is final and abiding. And the maintainer reserves all rights to modify my code. I also understand that the maintainer can remove my code in future, if he thinks so.
- [ ] Once my contribution is merged, my name will permanently appear in the Contribtor's List of this repository.
156 changes: 150 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,151 @@
.vscode
__pycache__
*.session
*.session-journal
t.py
tgcf.config.yml









# 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
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

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

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
venv
forwarder.session
config.ini
replace.yml
.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/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/
Loading

0 comments on commit ee162d8

Please sign in to comment.