Metadata-Version: 2.1
Name: 42-taskmaster
Version: 1.0.0
Summary: A process manager project for 42
Author-email: Timothee Lafay <tlafay@student.42lyon.fr>, Theo Nard <tnard@student.42lyon.fr>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: Cerberus==1.3.5
Requires-Dist: PyYAML==6.0.1

<!-- PROJECT LOGO -->
<br />
<div align="center">
  <a href="https://github.com/PandeoF1/42-taskmaster">
    <img src="https://raw.githubusercontent.com/PandeoF1/42-taskmaster/main/images/logo.png" alt="Logo" width="80" height="80">
  </a>

<h3 align="center">42 - Taskmaster</h3>

  <p align="center">
    Services management and monitoring tool
  </p>
</div>


## About The Project

Taskmaster is a job control manager project for 42 school.
It allows its users to control a number of processes on operating systems.

Inspired by the [Supervisor](https://github.com/Supervisor/supervisor)

### Prerequisites

Create a virtual environment using the following command:

* venv
  ```sh
  python3 -m venv venv && source venv/bin/activate
  ```

* pip
  ```sh 
  pip install -r requirements.txt
  ```

or use the devcontainer provided in the repository.

### Dependencies

* [Python](https://www.python.org/)
* [Cerberus](https://docs.python-cerberus.org/) # Provides data validation
* [PyYAML](https://pypi.org/project/PyYAML/) # Provides YAML parsing and dumping

## Installation

* From pypi
  ```sh
  pip install 42-taskmaster
  ```

* From source
  ```sh
  pip install .
  ```

## Usage

* Without arguments (load taskmaster.yml from current directory)
    ```sh
    taskmaster
    ```
* With arguments
    ```sh
    taskmaster -f /path/to/config.yml
    ```
* Without install
    ```sh
    python -m taskmaster.taskmaster
    ```

## Configuration file

```yaml
email:  # Optionnal
 to: ""
 smtp_email: ""
 smtp_password: ""
 smtp_server: "smtp.gmail.com"
 smtp_port: 465

services:
  - name: sleep
    cmd: "sleep 100"
    numprocs: 8 # min 1 max 32
    umask: 077
    workingdir: /tmp
    autostart: true
    autorestart: unexpected # always, never unexpected
    exitcodes:
      - 0
      - 2
    startretries: 3
    starttime: 5
    stopsignal: USR1
    stoptime: 10
    env: # Optionnal
      test: "test"
    stdout: ./taskmaster.yml # Optionnal (if not present don't log)
    stderr: /workspaces/42-taskmaster/logs/taskmaster.log # Optionnal
    # user: aaaaa # Optionnal (Downgrade privileges)
```


<!-- CONTRIBUTING -->
## Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!

1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request



## Contributors

Nard Théo - GUI / Configuration

Lafay Timothée - Services management

