interfacerproject / interfacer-gui

Evolution of Zenflow-gui for Interfacer project
6 stars 6 forks source link
# Interfacer GUI ### Interfacer's Progressive Web App client This is a Progressive Web App (PWA) acting as Graphical User Interface (GUI) and crypto wallet (end-to-end crypto) for the [Interfacer project](https://interfacerproject.eu). We are developing this component for the FabCityOS, an innovative federated open source platform to share and collaborate on Open Source Hardware projects. FabCityOS provides innovative tools to support the complexity of a distributed accounting system for flexible collaboration processes, it leverages crypto technology to empower participants with privacy, transparency and data ownership and can be adopted to implement fair and equitable compensation mechanisms.

[![Interfacer-gui](https://img.shields.io/endpoint?url=https://dashboard.cypress.io/badge/simple/nqct2i/main&style=flat&logo=cypress)](https://dashboard.cypress.io/projects/nqct2i/runs)

Building the digital infrastructure for Fab Cities


Interfacer project


What is INTERFACER?

The goal of the INTERFACER project is to build the open-source digital infrastructure for Fab Cities.

Our vision is to promote a green, resilient, and digitally-based mode of production and consumption that enables the greatest possible sovereignty, empowerment and participation of citizens all over the world. We want to help Fab Cities to produce everything they consume by 2054 on the basis of collaboratively developed and globally shared data in the commons.

To know more DOWNLOAD THE WHITEPAPER

Interfacer GUI Features

{screenshot}

LIVE DEMO


### ๐Ÿšฉ Table of Contents - [๐ŸŽฎ Quick start](#-quick-start) - [๐Ÿ’พ Install](#-install) - [๐Ÿ‹ Docker](#-docker) - [๐Ÿ API](#-api) - [๐Ÿ”ง Configuration](#-configuration) - [๐Ÿ“‹ Testing](#-testing) - [๐Ÿ”ก Translations](#-translations) - [๐Ÿ› Troubleshooting & debugging](#-troubleshooting--debugging) - [๐Ÿ˜ Acknowledgements](#-acknowledgements) - [๐ŸŒ Links](#-links) - [๐Ÿ‘ค Contributing](#-contributing) - [๐Ÿ’ผ License](#-license)

๐ŸŽฎ Quick start

To start using Interfacer GUI run the following commands

docker pull ghcr.io/interfacerproject/interfacer-gui:main
docker run -it -p 3000:3000 ghcr.io/interfacerproject/interfacer-gui:main

Open http://localhost:3000 with your browser to see the result.

๐Ÿ” back to top


๐Ÿ’พ Install

git submodule update --init
# then install the dependencies
pnpm i

# copy and fill the env variables from the example provided
cp .env.example .env.local

# to run the software slower but with livereload and watch
pnpm dev

# or build & start it for faster execution
pnpm build
pnpm start

Open http://localhost:3000 with your browser to see the result.

๐Ÿ” back to top


๐Ÿ‹ Docker

docker pull ghcr.io/interfacerproject/interfacer-gui:main

๐Ÿ” back to top


๐Ÿ”ง Configuration

Default values are available on the .env.example of this repository.

The next are derived services (endpoints of the instance microservice)

๐Ÿ” back to top


๐Ÿ“‹ Testing

E2E testing is provided via cypress.io and runnable locally via:

# in headless mode
pnpm test
# or by runnign cypress instance
pnpm e2e

๐Ÿ” back to top


๐Ÿ”ก translations

pnpm translate

๐Ÿ” back to top


๐Ÿ› Troubleshooting & debugging

Available bugs are reported in the Issues page

๐Ÿ” back to top


๐Ÿ˜ Acknowledgements

Copyleft (ษ”) 2022 by Dyne.org foundation, Amsterdam

Designed, written and maintained by Ennio Donato, Micol Salomone, Giovanni Abbatepaolo and Puria Nafisi Azizi.

๐Ÿ” back to top


๐ŸŒ Links

https://www.interfacer.eu/

https://dyne.org/

๐Ÿ” back to top


๐Ÿ‘ค Contributing

  1. ๐Ÿ”€ FORK IT
  2. Create your feature branch git checkout -b feature/branch
  3. Commit your changes git commit -am 'Add some fooBar'
  4. Push to the branch git push origin feature/branch
  5. Create a new Pull Request
  6. ๐Ÿ™ Thank you

๐Ÿ” back to top


๐Ÿ’ผ License

Interfacer GUI - Interfacer's Progressive Web App client
Copyleft (ษ”) 2022 Dyne.org foundation

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

๐Ÿ” back to top