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.0' | |
services: | |
api: | |
image: cyberhck/test.feature.manager | |
ports: | |
- 5001:5001 | |
environment: | |
- DatabaseConfig__Host=api_db | |
- DatabaseConfig__Port=5432 | |
- DatabaseConfig__User=api |
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 ( | |
"github.com/cyberhck/local/tonic" | |
) | |
type User struct { | |
Name string `json:"name"` | |
Email string `json:"email"` | |
Authorization string `in:"header" name:"Authorization"` |
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 * as React from "react"; | |
import {classes, style as typestyle} from "typestyle"; | |
import {buildBreakpoints} from "../../../helpers/buildBreakpoints"; | |
import {ITileBreakpoint} from "./interfaces"; | |
export interface IProps { | |
spanColumn?: number; | |
spanRow?: number; | |
/** | |
* Internal usage |
OlderNewer