Linguagens: PHP e Javascript (obrigatório) Banco de dados: Oracle, SQL Server, Mysql ou PostgreSQL (ao menos um deles)
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
{ | |
"picture": "https://placehold.it/100x100", | |
"email": "[email protected]", | |
"type_id": 0, | |
"name": "John Dow", | |
"password": "sdjsds", | |
"phone": "+55471212121", | |
"birthday": "1978-11-15T15:04:05+07:00", | |
"linkedin": "https://www.linkedin.com/in/eminetto", | |
"github": "http://github.com/eminetto", |
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
package main | |
import ( | |
"fmt" | |
"github.com/blevesearch/bleve" | |
) | |
func main() { | |
var indexPath = "/tmp/codenation/codenation.bleve" |
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
{ | |
"reports": [ | |
{ | |
"aggregate": { | |
"sloc": { | |
"logical": 5, | |
"physical": 7 | |
}, | |
"cyclomatic": 1, | |
"halstead": { |
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
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/ayu/ayu-dark.tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Roboto Mono", | |
"font_size": 14.0, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ |
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
FORMAT: 1A | |
HOST: http://api.sample.com.br/v1 | |
# Sample da API | |
Descrição da Sample. | |
# Group API | |
## Sobre [/] |
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
pipeline: | |
test: | |
image: php:7.1-cli | |
commands: | |
- apt-get update | |
- apt-get install git -y | |
- curl --silent --show-error https://getcomposer.org/installer | php | |
- php composer.phar install | |
- ./vendor/bin/phpunit --coverage-text --colors=never |
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: '2' | |
services: | |
drone-server: | |
image: drone/drone:0.6 | |
ports: | |
- 8001:8000 | |
volumes: | |
- ./:/var/lib/drone/ | |
restart: always |