/umsl-cmp-sci-4500-project-snapshot-2019-04-14

CMP SCI 4500 with K. Miller at UMSL in Spring 2019 (Introduction to the Software Profession) - Semester Project (Snapshot from April 14, 2019)

Primary LanguageCMIT LicenseMIT

app

For the time being, use the following steps or equivalent to develop.

Clone the repo.

$ git clone https://github.com/cozmonauts/app.git
$ cd app

Initialize submodules in the folder. This is not strictly necessary until you see a third_party/ folder appear in the repo, but it's a good habit.

$ git submodule update --init --recursive

Run the client module. This executes the __main__.py file in python/cozmonaut/, and it also sets up the module path in the VM to scan python/ for modules.

$ cd python
$ python -m cozmonaut

Within the week, we will have a system in place to launch the Python code from a simple executable that also supplies face recognition services. The customer will only need to run one executable. Until then, this will let us work on other functionality.