Skip to content

Commit

Permalink
Merge branch 'main' of github.com:cloudnativedaysjp/broadcast into main
Browse files Browse the repository at this point in the history
  • Loading branch information
tanayan299 committed Oct 22, 2022
2 parents ad4cbf4 + 2cb6410 commit e9337dd
Show file tree
Hide file tree
Showing 204 changed files with 19,978 additions and 1,273 deletions.
67 changes: 67 additions & 0 deletions dreamkast_api/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

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

# 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
dev-requirements.txt.log

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/
venv/
.venv/
.python-version
.pytest_cache

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

#Ipython Notebook
.ipynb_checkpoints
24 changes: 24 additions & 0 deletions dreamkast_api/.gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# ref: https://docs.gitlab.com/ee/ci/README.html

stages:
- test

.tests:
stage: test
script:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
- pytest --cov=openapi_client

test-3.5:
extends: .tests
image: python:3.5-alpine
test-3.6:
extends: .tests
image: python:3.6-alpine
test-3.7:
extends: .tests
image: python:3.7-alpine
test-3.8:
extends: .tests
image: python:3.8-alpine
23 changes: 23 additions & 0 deletions dreamkast_api/.openapi-generator-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
82 changes: 82 additions & 0 deletions dreamkast_api/.openapi-generator/FILES
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
.gitignore
.gitlab-ci.yml
.openapi-generator-ignore
.travis.yml
README.md
docs/apis/tags/BoothApi.md
docs/apis/tags/ChatMessageApi.md
docs/apis/tags/EventApi.md
docs/apis/tags/ProfileApi.md
docs/apis/tags/SponsorApi.md
docs/apis/tags/TalkApi.md
docs/apis/tags/TrackApi.md
docs/apis/tags/VideoRegistrationApi.md
docs/models/Booth.md
docs/models/ChatMessage.md
docs/models/ChatMessageProperties.md
docs/models/Event.md
docs/models/Profile.md
docs/models/Sponsor.md
docs/models/Talk.md
docs/models/Track.md
docs/models/UpdateChatMessage.md
docs/models/VideoRegistration.md
docs/models/ViewerCount.md
git_push.sh
openapi_client/__init__.py
openapi_client/api_client.py
openapi_client/apis/__init__.py
openapi_client/apis/tags/booth_api.py
openapi_client/apis/tags/chat_message_api.py
openapi_client/apis/tags/event_api.py
openapi_client/apis/tags/profile_api.py
openapi_client/apis/tags/sponsor_api.py
openapi_client/apis/tags/talk_api.py
openapi_client/apis/tags/track_api.py
openapi_client/apis/tags/video_registration_api.py
openapi_client/configuration.py
openapi_client/exceptions.py
openapi_client/model/__init__.py
openapi_client/model/booth.py
openapi_client/model/booth.pyi
openapi_client/model/chat_message.py
openapi_client/model/chat_message.pyi
openapi_client/model/chat_message_properties.py
openapi_client/model/chat_message_properties.pyi
openapi_client/model/event.py
openapi_client/model/event.pyi
openapi_client/model/profile.py
openapi_client/model/profile.pyi
openapi_client/model/sponsor.py
openapi_client/model/sponsor.pyi
openapi_client/model/talk.py
openapi_client/model/talk.pyi
openapi_client/model/track.py
openapi_client/model/track.pyi
openapi_client/model/update_chat_message.py
openapi_client/model/update_chat_message.pyi
openapi_client/model/video_registration.py
openapi_client/model/video_registration.pyi
openapi_client/model/viewer_count.py
openapi_client/model/viewer_count.pyi
openapi_client/models/__init__.py
openapi_client/rest.py
openapi_client/schemas.py
requirements.txt
setup.cfg
setup.py
test-requirements.txt
test/__init__.py
test/test_models/__init__.py
test/test_models/test_booth.py
test/test_models/test_chat_message.py
test/test_models/test_chat_message_properties.py
test/test_models/test_event.py
test/test_models/test_profile.py
test/test_models/test_sponsor.py
test/test_models/test_talk.py
test/test_models/test_track.py
test/test_models/test_update_chat_message.py
test/test_models/test_video_registration.py
test/test_models/test_viewer_count.py
tox.ini
1 change: 1 addition & 0 deletions dreamkast_api/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6.2.0
13 changes: 13 additions & 0 deletions dreamkast_api/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# ref: https://docs.travis-ci.com/user/languages/python
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
# command to install dependencies
install:
- "pip install -r requirements.txt"
- "pip install -r test-requirements.txt"
# command to run tests
script: pytest --cov=openapi_client
Loading

0 comments on commit e9337dd

Please sign in to comment.