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: | |
jaeger: | |
image: jaegertracing/all-in-one:1.8 | |
ports: | |
- 6831:6831/udp | |
- 6832:6832/udp | |
- 5778:5778 | |
- 16686:16686 | |
- 14268:14268 |
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 ( | |
"encoding/json" | |
"fmt" | |
"html/template" | |
"net/http" | |
) | |
type User struct { |
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
server { | |
listen *:80; | |
server_name neos.dev; | |
root /var/www/flow/Web; | |
autoindex off; | |
client_max_body_size 0; | |
access_log /var/log/nginx/flow.dev.access.log; | |
error_log /var/log/nginx/flow.dev.error.log; |
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
'TYPO3.NeosDemoTypo3Org:Tabs': | |
superTypes: ['TYPO3.Neos:Content'] | |
childNodes: | |
tabItems: | |
type: 'TYPO3.Neos:ContentCollection' | |
ui: | |
label: 'Tabs' | |
group: 'plugins' |