mirror of
https://codeberg.org/aryak/mozhi
synced 2024-11-09 22:12:03 +05:30
update dockerfile, ignore docs
This commit is contained in:
parent
5d02d7b5af
commit
8e85a7f259
5
.gitignore
vendored
5
.gitignore
vendored
@ -18,9 +18,12 @@
|
|||||||
# Dependency directories (remove the comment below to include it)
|
# Dependency directories (remove the comment below to include it)
|
||||||
# vendor/
|
# vendor/
|
||||||
|
|
||||||
# Simplytranslate binary (on linux and mac)
|
# Mozhi binary (on linux and mac)
|
||||||
/mozhi
|
/mozhi
|
||||||
|
|
||||||
|
# Auto-generated Documentation
|
||||||
|
/docs
|
||||||
|
|
||||||
# Go workspace file
|
# Go workspace file
|
||||||
go.work
|
go.work
|
||||||
|
|
||||||
|
@ -7,6 +7,8 @@ RUN apk --no-cache add git ca-certificates
|
|||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
RUN go mod download
|
RUN go mod download
|
||||||
|
RUN go install github.com/swaggo/swag/cmd/swag@latest
|
||||||
|
RUN swag init
|
||||||
RUN GOOS=linux GOARCH=$TARGETARCH go build -o /src/mozhi
|
RUN GOOS=linux GOARCH=$TARGETARCH go build -o /src/mozhi
|
||||||
|
|
||||||
FROM alpine:3.16 as bin
|
FROM alpine:3.16 as bin
|
||||||
|
187
docs/docs.go
187
docs/docs.go
@ -1,187 +0,0 @@
|
|||||||
// Code generated by swaggo/swag. DO NOT EDIT.
|
|
||||||
|
|
||||||
package docs
|
|
||||||
|
|
||||||
import "github.com/swaggo/swag"
|
|
||||||
|
|
||||||
const docTemplate = `{
|
|
||||||
"schemes": {{ marshal .Schemes }},
|
|
||||||
"swagger": "2.0",
|
|
||||||
"info": {
|
|
||||||
"description": "{{escape .Description}}",
|
|
||||||
"title": "{{.Title}}",
|
|
||||||
"contact": {},
|
|
||||||
"version": "{{.Version}}"
|
|
||||||
},
|
|
||||||
"host": "{{.Host}}",
|
|
||||||
"basePath": "{{.BasePath}}",
|
|
||||||
"paths": {
|
|
||||||
"/api/source_languages": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Show list of available source languages for engine",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Engine name",
|
|
||||||
"name": "engine",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "OK",
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/definitions/utils.List"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/api/target_languages": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Show list of available target languages for engine",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Engine name",
|
|
||||||
"name": "engine",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "OK",
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/definitions/utils.List"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/api/translate": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Translate text",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Engine name",
|
|
||||||
"name": "engine",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Source language",
|
|
||||||
"name": "from",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Target language",
|
|
||||||
"name": "to",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Text being translated",
|
|
||||||
"name": "text",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "OK",
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/definitions/utils.LangOut"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/api/tts": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Get Text-To-Speech for specified language using specified engine",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Engine name",
|
|
||||||
"name": "engine",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Language being TTS'd",
|
|
||||||
"name": "lang",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Text being TTS'd",
|
|
||||||
"name": "text",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"definitions": {
|
|
||||||
"utils.LangOut": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"detected": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"engine": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"source_language": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"target_language": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"translated-text": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"utils.List": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"id": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"name": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}`
|
|
||||||
|
|
||||||
// SwaggerInfo holds exported Swagger Info so clients can modify it
|
|
||||||
var SwaggerInfo = &swag.Spec{
|
|
||||||
Version: "",
|
|
||||||
Host: "",
|
|
||||||
BasePath: "",
|
|
||||||
Schemes: []string{},
|
|
||||||
Title: "",
|
|
||||||
Description: "",
|
|
||||||
InfoInstanceName: "swagger",
|
|
||||||
SwaggerTemplate: docTemplate,
|
|
||||||
LeftDelim: "{{",
|
|
||||||
RightDelim: "}}",
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
swag.Register(SwaggerInfo.InstanceName(), SwaggerInfo)
|
|
||||||
}
|
|
@ -1,157 +0,0 @@
|
|||||||
{
|
|
||||||
"swagger": "2.0",
|
|
||||||
"info": {
|
|
||||||
"contact": {}
|
|
||||||
},
|
|
||||||
"paths": {
|
|
||||||
"/api/source_languages": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Show list of available source languages for engine",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Engine name",
|
|
||||||
"name": "engine",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "OK",
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/definitions/utils.List"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/api/target_languages": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Show list of available target languages for engine",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Engine name",
|
|
||||||
"name": "engine",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "OK",
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/definitions/utils.List"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/api/translate": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Translate text",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Engine name",
|
|
||||||
"name": "engine",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Source language",
|
|
||||||
"name": "from",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Target language",
|
|
||||||
"name": "to",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Text being translated",
|
|
||||||
"name": "text",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "OK",
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/definitions/utils.LangOut"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/api/tts": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Get Text-To-Speech for specified language using specified engine",
|
|
||||||
"parameters": [
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Engine name",
|
|
||||||
"name": "engine",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Language being TTS'd",
|
|
||||||
"name": "lang",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "string",
|
|
||||||
"description": "Text being TTS'd",
|
|
||||||
"name": "text",
|
|
||||||
"in": "query",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"definitions": {
|
|
||||||
"utils.LangOut": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"detected": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"engine": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"source_language": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"target_language": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"translated-text": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"utils.List": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"id": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"name": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,102 +0,0 @@
|
|||||||
definitions:
|
|
||||||
utils.LangOut:
|
|
||||||
properties:
|
|
||||||
detected:
|
|
||||||
type: string
|
|
||||||
engine:
|
|
||||||
type: string
|
|
||||||
source_language:
|
|
||||||
type: string
|
|
||||||
target_language:
|
|
||||||
type: string
|
|
||||||
translated-text:
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
utils.List:
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
type: string
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
info:
|
|
||||||
contact: {}
|
|
||||||
paths:
|
|
||||||
/api/source_languages:
|
|
||||||
get:
|
|
||||||
parameters:
|
|
||||||
- description: Engine name
|
|
||||||
in: query
|
|
||||||
name: engine
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
responses:
|
|
||||||
"200":
|
|
||||||
description: OK
|
|
||||||
schema:
|
|
||||||
$ref: '#/definitions/utils.List'
|
|
||||||
summary: Show list of available source languages for engine
|
|
||||||
/api/target_languages:
|
|
||||||
get:
|
|
||||||
parameters:
|
|
||||||
- description: Engine name
|
|
||||||
in: query
|
|
||||||
name: engine
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
responses:
|
|
||||||
"200":
|
|
||||||
description: OK
|
|
||||||
schema:
|
|
||||||
$ref: '#/definitions/utils.List'
|
|
||||||
summary: Show list of available target languages for engine
|
|
||||||
/api/translate:
|
|
||||||
get:
|
|
||||||
parameters:
|
|
||||||
- description: Engine name
|
|
||||||
in: query
|
|
||||||
name: engine
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
- description: Source language
|
|
||||||
in: query
|
|
||||||
name: from
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
- description: Target language
|
|
||||||
in: query
|
|
||||||
name: to
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
- description: Text being translated
|
|
||||||
in: query
|
|
||||||
name: text
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
responses:
|
|
||||||
"200":
|
|
||||||
description: OK
|
|
||||||
schema:
|
|
||||||
$ref: '#/definitions/utils.LangOut'
|
|
||||||
summary: Translate text
|
|
||||||
/api/tts:
|
|
||||||
get:
|
|
||||||
parameters:
|
|
||||||
- description: Engine name
|
|
||||||
in: query
|
|
||||||
name: engine
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
- description: Language being TTS'd
|
|
||||||
in: query
|
|
||||||
name: lang
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
- description: Text being TTS'd
|
|
||||||
in: query
|
|
||||||
name: text
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
responses: {}
|
|
||||||
summary: Get Text-To-Speech for specified language using specified engine
|
|
||||||
swagger: "2.0"
|
|
Loading…
Reference in New Issue
Block a user