Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 667 Bytes

DEVELOPMENT.md

File metadata and controls

13 lines (10 loc) · 667 Bytes

Local Development

This repository contains 2 basic applications: frontend & api. It is easy to manage, and you can easily add new local application(s).

Basic structure

Application is based on blueprints.

New extension requires:

  • new Python Package in ethtx_ce subdirectory.
  • create_app function (created in new package in init file) which returns Flask object by calling app factory file.
  • calling a function above in a wsgi.py file with assigned url prefix.

These simple steps allow you to add new extension and integrate with entire application.