Skip to content

Commit 47e59ae

Browse files
committed
add more test instructions
1 parent 03f398a commit 47e59ae

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

FOR_CONTRIBUTORS.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,27 @@ See the [Prerequisites section in README.md](./README.md#prerequisites) for comp
2929

3030
3. **Verify installation**
3131
```bash
32-
poetry run datacustomcode version
32+
datacustomcode version
3333
```
3434

35+
4. **Initialize a project for development work**
36+
37+
**Note**: To test your changes and develop new features, initialize a sample project:
38+
39+
```bash
40+
# Create a new directory for your test project
41+
mkdir my-test-project
42+
cd my-test-project
43+
44+
# Initialize a new Data Cloud custom code project
45+
datacustomcode init .
46+
47+
# Test your SDK modifications against the sample project with:
48+
datacustomcode run ./payload/entrypoint.py
49+
```
50+
51+
**Tip**: See the [README.md](./README.md) for additional `datacustomcode` commands (`scan`, `deploy`, `zip`) to test specific code paths and validate your SDK changes thoroughly.
52+
3553
## 🔧 Makefile Commands
3654

3755
The project includes a comprehensive Makefile for common development tasks:

0 commit comments

Comments
 (0)