Welcome to Faasera! This guide will walk you through the quickest way to get started with Faasera — whether you’re a developer, data engineer, or compliance lead.
Choose one of the following:
No setup required. Contact support@faasera.ai for a trial account.
git clone https://github.com/faasera/faasera-platform.git
cd faasera-platform
docker-compose up -d
Access the UI at: http://localhost:8080
See:
| Tool | Required For |
|---|---|
| Docker / Docker Compose | Local UI platform |
| Java 11+ or PySpark | SDK-based masking |
| Postgres / MySQL / Snowflake | Test connection setup |
| AWS CLI or Azure CLI | Cloud function deployment |
faasera-platform/
├── api/ # REST backend (Java/Micronaut or Spring Boot)
├── ui/ # React-based frontend
├── config/ # Default policy examples and templates
├── sdk/ # Java / PySpark SDK
├── examples/ # Sample pipelines and scripts
└── docker-compose.yml # Local orchestration
FaaseraEngine engine = FaaseraEngine.builder()
.withPolicy("masking-policy.yaml")
.withInput("jdbc:postgresql://...")
.withOutput("masked_output.csv")
.build();
engine.runMasking();