Skip to content

EasyLOB/Medium-Miro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Miro

Miro API Clients in .NET and Python

\DOTNET
    \API-DOTNET
        \API-DOTNET <- .NET ( Core ) 6.0, based on OpenAPI Specification
        \API-DOTNET-Framework <- .NET Framework 4.8, based on OpenAPI Specification
\Python
    \API-Python <- Python, based on OpenAPI Specification

Please refer to the following Medium story tutorial:

Create Miro API Clients in C# and Python from OpenAPI Specification

Miro Web SDK App with C# and ASP.NET Core

\DOTNET
    \App-DOTNET
        \my-api <- Web SDK App with C# and ASP.NET Core

Please refer to the following Medium story tutorial:

Miro Web SDK App with C# and ASP.NET Core

To run the application execute:

dotnet run

Miro Web SDK App with Python and Flask

\Python
    \App-Python <- Web SDK App with Python and Flask

Please refer to the following Medium story tutorial:

Miro Web SDK App with Python and Flask

To get the application running you need to install the following:

pip install flask flask-cors

To run the application with Flask ( Port 3000 is the same as used in React App ) execute:

flask run --host=0.0.0.0 --port=3000

To run the application with Gunicorn, in a Production server with https certificates, execute:

pip install gunicorn

WINDOWS
gunicorn ^
  -certfile /etc/letsencrypt/live/domain.com/cert.pem ^
  -keyfile /etc/letsencrypt/live/domain.com/privkey.pem ^
  -b 0.0.0.0:3443 ^
  app:app

LINUX
gunicorn \
  -certfile /etc/letsencrypt/live/domain.com/cert.pem \
  -keyfile /etc/letsencrypt/live/domain.com/privkey.pem \
  -b 0.0.0.0:3443 \
  app:app

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages