Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

Latest commit

 

History

History
52 lines (40 loc) · 1.17 KB

README.md

File metadata and controls

52 lines (40 loc) · 1.17 KB

docker-force-com

Docker Automated build

A Docker Image for CI/CD Salesforce Apex prorjects.

Result

How to Use

docker pull atsnngs/force-com

cat > envfile.txt <<ENVFILE
SF_USERNAME=you@example.com
SF_PASSWORD=PASSWORD+SECURITY_TOKEN
SF_SERVER=https://xxx-api.salesforce.com
ENVFILE

docker run \
  -v $(pwd)/wsdl:/wsdl \
  -v $(pwd)/src/classes:/src/classes \
  -v $(pwd)/src/triggers:/src/triggers \
  --rm \
  --env-file envfile.txt \
  atsnngs/force-com

Directory Structure

.
├── src # Force IDE project sources
│   ├── classes
│   │   └── MyClass.cls
│   └── triggers
│       └── MyTrigger.trigger
│
└── wsdl # Download WSDL files, see refs
    ├── apex.wsdl
    └── enterprise.wsdl

Refs