Updated Makefile and README.md

This commit is contained in:
netkas 2020-12-27 17:06:07 -05:00
parent 102a9cf152
commit 05cb0f735f
2 changed files with 16 additions and 2 deletions

View File

@ -128,4 +128,9 @@ system_prep_pip:
rm get-pip.py
system_prep_gcc:
apt -y install gcc build-essential
apt -y install gcc build-essential
# ======================================================================================================================
start_langdetect:
python3 -m coffeehouse_languagedetection --start-server

View File

@ -7,7 +7,7 @@ used in order to install CoffeeHousePy, and it's components onto the machine.
## Prepare the system
The system must have `python3.8` installed, `pip` and `gcc`. To prepare the system run
The system must have `python3.6` installed, `pip` and `gcc`. To prepare the system run
the following command
```shell
@ -22,4 +22,13 @@ CoffeeHousePy run the following command
```shell
sudo -H make clean build install
```
## Services
Once CoffeeHousePy is installed, you can start it's services indvidually.
```shell
make start_langdetect # Starts the language detection server, runs on port 5606
```