An open API service indexing awesome lists of open source software.

https://github.com/ticosax/secret_santa


https://github.com/ticosax/secret_santa

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

        

# Secret Santa for your familly and friends organization

## create config file

```toml
# participants.toml
title = 'Groups To Make'

[participants]

[participants.alice]
exclusions = ['bob']

[participants.bob]
exclusions = ['alice']

[participants.kevin]
exclusions = []

[participants.jessica]
exclusions = []
```

## invoke
```sh
santa participants.toml
```

Should output something like
```
alice should give to kevin
bob should give to jessica
kevin should give to bob
jessica should give to alice
```