Skip to content

Commit

Permalink
Update README: replace Mega link with wget command
Browse files Browse the repository at this point in the history
  • Loading branch information
sopyb committed Apr 15, 2024
1 parent cab5360 commit 08c5fbb
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,29 +54,25 @@ 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.
```
$ 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 +89,11 @@ 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.
```
$ 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 08c5fbb

Please sign in to comment.