Skip to content

Commit 44111d6

Browse files
committedFeb 7, 2025
Merge branch 'main' of https://github.com/AOSSIE-Org/PictoPy into feature/multiple-folder-support
2 parents d6c45d5 + 082e5d0 commit 44111d6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+4405
-249
lines changed
 

‎.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ lerna-debug.log*
1010
backend/app/models/image-generation/*
1111

1212
node_modules
13-
dist
13+
1414
dist-ssr
1515
*.local
1616

‎README.md

+18
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,24 @@ You can control the number of workers by setting the `WORKERS` environment varia
264264
- For setting up the frontend, follow the instructions in the [Frontend Setup Guide](./docs/frontend/docker-setup.md).
265265
</br>
266266
- For setting up the backend, follow the instructions in the [Backend Setup Guide](./docs/backend/docker-setup.md).
267+
268+
### Testing
269+
#### Frontend
270+
```bash
271+
cd frontend
272+
npm test
273+
```
274+
#### Backend'
275+
- FastAPI
276+
```bash
277+
cd backend
278+
pytest
279+
```
280+
- Tauri
281+
```bash
282+
cd frontend/src-tauri/
283+
cargo test
284+
```
267285

268286
## Additional Resources
269287

0 commit comments

Comments
 (0)
Please sign in to comment.