GithubHelp home page GithubHelp logo

globalic / ugromart Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 192 KB

UgroMart is a platform connecting customers to local market vendors. Users can sign up, view market vendors and purchase local produce like food, fruits and vegetables. UgroMart is an end to end solution that handles payments, deliveries, product and order management.

Dockerfile 4.85% Python 92.96% Shell 1.43% Makefile 0.77%

ugromart's Introduction

[UGROMART Project]

UgroMart is a platform connecting customers to local market vendors. Users can sign up, view market vendors and purchase local produce like food, fruits and vegetables. UgroMart is an end to end solution that handles payments, deliveries, product and order management.

Technology Stack

Project structure:

.
├── ugromart
    ├── delivery-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── deliveryconfirmation-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── deliveryitem-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── deliverystatus-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── order-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── orderassignment-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── orderitem-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── payment-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── product-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── productcategory-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── productitem-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── productvariation-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── unitofmeasure-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── user-service
        ├── Dockerfile
        ├── Pipfile
        ├── Pipfile.lock
        ├── app
    ├── .dockerignore
    ├── .env.example
    ├── .gitignore
    ├── Makefile
    ├── nginx_config.conf
    ├── docker-compose.yml

Project setup

Assuming docker is pre-installed
Environment File

Example .env.example file:

PG_PSWD_DLVR=
PG_USER_DLVR=delivery

PG_PSWD_ORDE=
PG_USER_ORDE=order

PG_PSWD_PRDS=
PG_USER_PRDS=product

PG_PSWD_UOMS=
PG_USER_UOMS=uom

# Delivery Services Url
DELIVERY_SERVICE_URL = "http://.../api/v1/deliveries/"
DELIVERYSTATUS_SERVICE_URL="http://.../api/v1/deliverystatus/"

# Order Services Url
ORDER_SERVICE_URL="http://.../api/v1/orders/"

# Payment Services Url
PAYMENT_SERVICE_URL="http://.../api/v1/payments/"

# Product Services Url
PRODUCT_SERVICE_URL="http://.../api/v1/products/"
CATEGORY_SERVICE_URL="http://.../api/v1/categories/"
PRODUCTITEM_SERVICE_URL="http://.../api/v1/productitems/"
VARIATION_SERVICE_URL = "http://.../api/v1/variations/"

# UnitOfMeasure Services Url
UOM_SERVICE_URL= "http://.../api/v1/unitofmeasures/"
Api Access path for all the services
default http path: http://127.0.0.1/api/v1/{service}/docs
Service names
  • deliveries : from delivery-service
  • confirmations : from deliveryconfirmation-service
  • deliveryitems : from deliveryitem-service
  • orders : from order-service
  • orderassignments : from orderassignment-service
  • orderitems : from orderitem-service
  • products : from product-service
  • categories : from productcategory-service
  • productitems : from productitem-service
  • variations : from productvariation-service
  • unitofmeasures : from unitofmeasure-service
  • auth : from user-service
WIP services
  • payments : from payment-service
  • deliverystatus : from deliverystatus-service
Development/Production environment propagation
make stack
Development/Production environment destroy
make tearstack

Contribution guidelines

  • Code review
  • Other guidelines
  • Contact repo owner for more details.

ugromart's People

Contributors

dependabot[bot] avatar eleazar-harold avatar

Watchers

 avatar

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.