rlamana / filemanager

Filemanager stack example app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Okteto File Manager App

Develop on Okteto

API Specification

openapi: 3.0.0
info:
  title: Files API
paths:
  "/api/files":
    get:
      summary: Get list of files
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  "$ref": /schema/file-item
"$schema": https://json-schema.org/draft/2019-09/schema
"$id": /schema/file-item
title: File Item
type: object
properties:
  id:
    type: number
  name:
    type: string
  kind:
    type: string
  size:
    type: number # File size in bytes.
  parentId:
    type:
    - number
    - 'null'
  content:
    type:
    - string
    - 'null'

UI Specification

Layout

Layout Spec

Colors

Colors Spec

About

Filemanager stack example app


Languages

Language:JavaScript 83.4%Language:CSS 12.6%Language:HTML 2.1%Language:Dockerfile 1.8%