Skip to content

Commit

Permalink
Merge pull request #710 from sopyb/update-readme
Browse files Browse the repository at this point in the history
Update README: replace Mega link with wget command
  • Loading branch information
gridhead committed Apr 22, 2024
2 parents a2215f0 + 41451df commit 332d24c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,29 +54,27 @@ The web service has the following features
```
https://github.com/fedora-infra/mote
```
2. Download the archive of meeting logs from the link below.
```
https://mega.nz/file/cJYykbKA#jJozcnIG-WzwlYVQUXF25lqM5A8PNl2knQObQrSpOSk
```
3. Clone the forked repository to your local storage.
2. Clone the forked repository to your local storage.
```
$ git clone git@github.com:<username>/mote.git
```
4. Navigate into the cloned repository.
3. Navigate into the cloned repository.
```
$ cd mote
```
5. Depending on the kind of approach required, follow either of the below sections.
4. Depending on the kind of approach required, follow either of the below sections.

### Containerized setup

1. Install [Podman](https://podman.io/getting-started/installation) on Fedora Linux.
```
$ sudo dnf install podman
```
2. Extract the previously downloaded archive of meeting logs in the directory of the cloned repository.
2. Download meeting logs in the directory of the cloned repository.

- To download logs from a specific channel, append the channel name to the URL. For instance, for the "fedora-meeting" channel, use https://meetbot-raw.fedoraproject.org/fedora-meeting/.
```
$ tar -xzf meetbot.tar.gz
$ wget -r -P "./meetbot" -nH -R "index.html,robots.txt" -A ".html,.txt" https://meetbot-raw.fedoraproject.org/
```
3. Build the container image.
```
Expand All @@ -93,11 +91,13 @@ The web service has the following features
```
$ sudo dnf install python3 python3-virtualenv poetry
```
2. Extract the previously downloaded archive of meeting logs in the `/srv/web` directory.
2. Download meeting logs in the `/srv/web` directory.

- To download logs from a specific channel, append the channel name to the URL. For instance, for the "fedora-meeting" channel, use https://meetbot-raw.fedoraproject.org/fedora-meeting/.
```
$ sudo mkdir -p /srv/web
$ sudo chown $USER /srv/web
$ tar -xzf meetbot.tar.gz -C /srv/web
$ wget -r -P "/srv/web/meetbot" -nH -R "index.html,robots.txt" -A ".html,.txt" https://meetbot-raw.fedoraproject.org/
```
3. Create and activate the virtual environment.
```
Expand Down

0 comments on commit 332d24c

Please sign in to comment.