Giter Club home page Giter Club logo

keep-secrets's Introduction

Keep Secrets


KeepSecrets Project to share password and messages securely.

Graph gif

Native Installation

NOTE: NodeJS 16.x.x or higher is required.

# clone the repo
$ git clone https://github.com/EsteveSegura/keep-secrets

# change the working directory
$ cd keep-secrets

# install NodeJS if is not installed
$ cd src && yarn i && yarn start

Docker Installation

If you want to run the project from docker or a portainer simply run the following docker-compose.yml

version: "3.7"

services:
  api:
    image: girlazo/keep-secrets
    depends_on:
      - mongo
    ports:
      - 3002:3002
    command: yarn start
    networks:
      - keep-secrets
  mongo:
    image: mongo
    volumes:
      - ./data/mongo:/data/db
    ports:
      - "27017:27017"
    environment:
      MONGO_INITDB_ROOT_USERNAME: admin
      MONGO_INITDB_ROOT_PASSWORD: admin
    networks:
      - keep-secrets
networks:
  keep-secrets:
    name: keep-secrets

Architecture

The architecture of keep-secrets follows a service approach, it does not follow a very focused approach where all services are small (microservices), it is intended to build services with several nested contexts, creating aggregates.

All calls are routed through a gateway which in turn has the ability to do some checks to remove that burden from the rest of the services. Architecture Schema

Usage

You can reach the frontend via browser

http://localhost:3002/

License

MIT © Keep Secrets

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.