summaryrefslogtreecommitdiff
path: root/app/README.md
blob: 124afa205f839ef6d63eaa3a0756bbeb7381bb33 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
How to run EnglishPal
===========================



Hui Lan <hui.lan@cantab.net>
1 November 2019





Run it on a local machine
-------------------------

python3 main.py






Run it within Docker
--------------------

Assuming that docker has been installed...


ssh to ubuntu@118.25.96.118
cd to /home/lanhui/englishpal

# Stop service
sudo service docker restart

# Rebuild container. Run this after modifying the source code.
sudo docker build -t englishpal .

# Run the application
sudo docker run -d -p 90:80 -v /home/lanhui/englishpal/app/static/frequency:/app/static/frequency -t englishpal  # for permanently saving data
sudo docker run -d -p 90:80 -t englishpal # data will be lost after existing

# Save space.  Run it after sudo docker run
sudo docker system prune -a -f


# Other commands
sudo docker ps -a

sudo docker logs image_name, where image name could be obtained from sudo docker ps.

build.sh contains all the above commands.  Run "sudo ./build.sh" to rebuild the web application.