CrownKira / digitalace

A comprehensive business solution that integrates all aspects of running an e-commerce store for SME by removing the bloat and simplifying the user journey.

Home Page:https://eizea.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DigitaLAce

Build Status GitHub

Getting Started

Installation

  1. Install a stable version of NodeJS. The active LTS or current version should work fine.
  2. Install Docker.
  1. Install ModHeader.
  1. Run git clone <url> --recursive to clone the repository and navigate to it using cd in your command line or shell tool.
  2. Run yarn --cwd digitalace-frontend/ install to install all dependencies for frontend.
  3. Run mkdir pgdata to create a directory that is used to persist data generated by and used by db container.
  4. Run docker compose up --build to create and run all containers.
  • To run a specific service, please refer to this section.
  • It might take a while for all the servers to be ready when you are running it for the first time. (so please be patient ^.^)
  1. Point your browser to http://localhost:3000 to access the frontend.
  2. Point your browser to http://localhost:5000 to access the backend.

Development

Docker Services

  1. api running backend server
  2. db running postgresql server
  3. client running frontend server

Useful Commands

  • docker exec -it <container> sh: to access a running container (Note: this container must be running before you can do this)
  • docker compose run <service> sh -c "<command>": to run a one-time command against a service
  • docker compose run --service-ports <service>: to run a specific service

Contribution Guidelines

As a Collaborator

To make a pull request
  • git clone <url> --recursive
  • cd to the project directory
  • git checkout <branch>
  • (make changes)
  • git add .
  • git commit -m 'commit message'
  • git push origin <branch>
  • compare and pull request
To sync your forked repo

(cd to the root and git checkout main)

  • git remote add upstream <url>
  • git remote -v to check that this repo has been added as upstream
  • git reset --hard to reset all local changes to the latest local commit
  • git fetch upstream
  • git merge upstream/main
  • git push origin main

About

A comprehensive business solution that integrates all aspects of running an e-commerce store for SME by removing the bloat and simplifying the user journey.

https://eizea.com

License:MIT License


Languages

Language:Dockerfile 100.0%