Skip to content

Commit

Permalink
Markdown lint OCD
Browse files Browse the repository at this point in the history
  • Loading branch information
csaudiodesign committed Dec 4, 2023
1 parent d87d735 commit eb5c0fb
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions remote_instructions.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
# Advanced: Running Remotely on a Server
If you only want to run our your own computer, you can ignore these instructions.
# Advanced: Running Remotely on a Server

The following are instructions for setting up the annotation tool on a remote server i.e. not on a local computer, but in the cloud. Tested with `gunicorn==19.7.1`.
```
If you only want to run our your own computer, you can ignore these instructions.

The following are instructions for setting up the annotation tool on a remote server i.e. not on a local computer, but in the cloud. Tested with `gunicorn==19.7.1`.

```bash
# install python
wget https://repo.anaconda.com/archive/Anaconda3-2019.03-Linux-x86_64.sh
bash Anaconda3-2019.03-Linux-x86_64.sh
export PATH=~/anaconda3/bin:$PATH
```
```

```bash
# setup websever
conda install gunicorn
sudo apt-get install nginx
sudo rm /etc/nginx/sites-enabled/default
```

Edit the nginx config file so it contains the info in the brackets.
```

```bash
sudo nano /etc/nginx/sites-available/example.com

"""
Expand All @@ -31,14 +35,14 @@ server {
sudo ln -s /etc/nginx/sites-available/example.com /etc/nginx/sites-enabled/example.com
```

```
```bash
# download the annotation code from this repo
mkdir audio_annotation_app
cd audio_annotation_app
git clone ...
```

```
```bash
# run annotation app
sudo service nginx restart
screen gunicorn application:application
Expand Down

0 comments on commit eb5c0fb

Please sign in to comment.