This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Emulador: http://www.fbalpha.com/downloads/ | |
| Kaillera DLL: https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/p2pkaillera/kailleraclient.dll | |
| Colocar kaillera DLL na pasta raiz do final burn alphba. | |
| Arbrir FBA - GAME - Play Via Kaillera, custom IP adiciona o IP do server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| influxdb: | |
| image: influxdb | |
| volumes: | |
| - $PWD/influxdb:/var/lib/influxdb | |
| ports: | |
| - "8083:8083" | |
| - "8086:8086" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "730":{ | |
| "success":true, | |
| "data":{ | |
| "type":"game", | |
| "name":"Counter-Strike: Global Offensive", | |
| "steam_appid":730, | |
| "required_age":0, | |
| "is_free":true, | |
| "controller_support":"full", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| create_release: | |
| stage: deploy | |
| image: docker:latest | |
| tags: | |
| - docker_runner | |
| script: | |
| - curl --header 'Content-Type: application/json' --header "PRIVATE-TOKEN: gDybLx3yrUK_HLp3qPjS" --data '{ "name": "New release", "tag_name": "v0.3", "description": "Super nice release", "milestones": ["v1.0", "v1.0-rc"], "assets": { "links": [{ "name": "hoge", "url": "https://google.com" }] }}' --request POST https://gitlab.example.com/api/v4/projects/24/releases | |
| only: | |
| - master | |
| - merge_request |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import gitlab | |
| #Creates a Gitlab Connection object, you must create your token on Gitlab | |
| gl = gitlab.Gitlab('https://gitlab.example.com/gitlab', private_token=os.environ['your_token']) | |
| #Creates a function to get the project internal ID from the CI. | |
| def get_project(project_id): | |
| return gl.projects.get(project_id) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import gitlab | |
| #Creates a Gitlab Connection object | |
| gl = gitlab.Gitlab('https://gitlab.example.com/gitlab', private_token=os.environ['your_token']) | |
| #Creates a function to get the project internal ID from the CI. | |
| def get_project(project_id): | |
| return gl.projects.get(project_id) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| before_script: | |
| - pip install python-gitlab | |
| create_release: | |
| stage: deploy | |
| image: docker:latest | |
| tags: | |
| - docker_runner | |
| script: | |
| - python create_release.py | |
| only: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import os | |
| import gitlab | |
| import click | |
| #Creates a Gitlab Connection object | |
| gl = gitlab.Gitlab('https://gitlab.example.com/gitlab', private_token=os.environ['your_token']) | |
| #Creates a function to get the project internal ID from the CI. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| before_script: | |
| - pip install python-gitlab click | |
| create_release: | |
| stage: deploy | |
| image: docker:latest | |
| tags: | |
| - docker_runner | |
| script: | |
| - ./create_release.py ${CI_PROJECT_ID} v1.0 | |
| only: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM python:latest | |
| COPY scripts/ /usr/local/bin/ | |
| RUN apt update -y |
OlderNewer