Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #79

Merged
merged 4 commits into from
Nov 27, 2024
Merged

Dev #79

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/deploy-documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: deploy-documentation

on: [push, pull_request, workflow_dispatch]

permissions:
contents: write

jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install dependencies
run: |
pip install sphinx sphinx_rtd_theme myst_parser
- name: Sphinx build
run: |
sphinx-build docs/source _build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/
force_orphan: true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# IDE
.idea/
.vscode/

# Documentation
build/
Expand Down
105 changes: 104 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,104 @@
# AutoTasker
# AREA

AREA (Action Reaction) aims to connect multiple services together, similar to IFTTT.<br>
With AREA, you can create automated workflows that integrate various services and perform actions based on specific triggers.

## Table of Contents

- [Getting Started](#getting-started)
- [Prerequisites](#prerequisites)
- [Installation & Usage](#installation--usage)
- [Documentation](#documentation)
- [Requirements](#requirements)
- [Usage](#usage)
- [Tests](#tests)
- [License](#license)
- [Contributors](#contributors)

## Getting Started

### Prerequisites

- vite js
- go
- docker

### Installation & Usage

<details>
<summary>Click to expand</summary>

1. Clone the repo
```sh
git clone [email protected]:ASM-Studios/AREA.git
```

2. Install NPM packages
```sh
cd AREA/client-web
npm install
```

3. Install Go packages
```sh
cd AREA/server
<TODO>
```

4. Run the project
```sh
cd AREA/client-web
npm run start
```
```sh
cd AREA/server
go run ./...
```
</details>

### Documentation

#### Requirements

<details>
<summary>Click to expand</summary>

- Python
- sphinx
- spinx_rtd_theme

sphinx and sphinx_rtd_theme can be installed using pip

</details>

#### Usage

The documentation is automatically built and deployed to GitHub Pages when a push is made to the `main` branch.

You can consult the documentation online at [AREA Documentation](https://asm-studios.github.io/AREA/).

You can build the documentation locally by running the following command:
```sh
cd AREA/docs
make docs
```

### Tests

// TODO

## License

![Github License](https://img.shields.io/badge/license-GLP3.0-yellowgreen.svg)

This project is licensed under the terms of the GLP3.0 license. See the [LICENSE](LICENSE) file for details.

## Contributors

This project was developed by:

- Maël RABOT
- Mathieu COULET
- Mathieu BOREL
- Charles MADJERI
- Samuel BRUSCHET
242 changes: 0 additions & 242 deletions client_web/Documentation/Contexts.md

This file was deleted.

1 change: 1 addition & 0 deletions client_web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"type": "module",
"main": "electron.js",
"scripts": {
"start": "mkcert -install && mkcert localhost && vite",
"dev": "mkcert -install && mkcert localhost && vite",
"production": "vite --mode production",
"build": "tsc -b && vite build",
Expand Down
Binary file added client_web/public/background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading