Skip to content

Latest commit

 

History

History
90 lines (61 loc) · 2.51 KB

README.md

File metadata and controls

90 lines (61 loc) · 2.51 KB

ERP Consultores y Asociados, C.A. ADempiere Landing Page

Original Author: Mr.Hope License Maintainer

A community page VuePress and VuePress Theme Hope forked from Mister-Hope (Thanks)

The collection includes a number of books covering the main topics of:

  • Functional Guide (Generated automatically from ADempiere)

More References

Discord

Running the docs

For build it just run yarn build:vite, if you want to run all doc just run yarn dev:vite, a result after run can be:

yarn run v1.22.19
$ vuepress-vite dev src
info Initializing VuePress and preparing data...

  vite v2.9.12 dev server running at:

  > Local:    http://localhost:8080/
  > Network:  http://192.168.5.221:8080/
  > Network:  http://172.17.0.1:8080/
  > Network:  http://172.21.0.1:8080/
  > Network:  http://172.23.0.1:8080/
  > Network:  http://172.22.0.1:8080/

Run docker container:

Minimal Docker Requirements

To use this Docker image you must have your Docker engine version greater than or equal to 3.0.

Run with Docker-Compose

Or easy run container using docker-compose with follow command:

docker compose -f build-docker/docker-compose.yaml up

Run container container:

Download docker image:

docker pull erpya/adempiere-landing-page

Run the docker container

docker run -it -d \
	--name adempiere-landing-page \
	-p 80:80 \
	-e VUE_HOST="http://localhost:9526" \
	-e ZK_HOST="http://localhost:8888/webui/" \
  -e SWING_HOST="http://localhost/adempiere.zip" \
	erpya/adempiere-landing-page

Build docker image (for development only):

First compile output files.

# Install packages.
pnpm install --frozen-lockfile

# build dist files
pnpm run build:vite

Build docker image (for development only):

docker build -t erpya/adempiere-landing-page:dev -f ./build-docker/development.Dockerfile .