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)
- The official page is in: https://erpya.com
- The official Wiki is in: http://docs.erpya.com
- If you need report a bug see: https://github.com/erpcya/adempiere-landing-page
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/
To use this Docker image you must have your Docker engine version greater than or equal to 3.0.
Or easy run container using docker-compose
with follow command:
docker compose -f build-docker/docker-compose.yaml up
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
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 .