-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstructions.txt
More file actions
26 lines (21 loc) · 793 Bytes
/
Copy pathInstructions.txt
File metadata and controls
26 lines (21 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
sudo apt update
sudo apt install python3-venv
python3 -m venv venv
source venv/bin/activate
git config --global user.email "dakopen185@gmail.com"
git config --global user.name "Daniel Busch"
git clone https://github.com/dakopen/AusspracheTrainer.org.git
git checkout **CURRENTBRANCH**
cd AusspracheTrainer.org
pip install -r requirements.txt
sudo apt install redis-server
sudo apt-get install gettext
sudo apt install ffmpeg
ADD env file
FOR DOCKER ON SERVER:
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"
sudo apt update
apt-cache policy docker-ce
sudo apt install docker-ce