A MVP prototype for an antiques marketplace - part of a group project in Software Engineering and testing at HiØ, written with love in Python <3
- Erik Teien Jarem @eriktja
- Mujibullah Rahimi @Mujibullah-Rahimi
- Ole-Jørgen Andersen @olejorga
- Simen Jacobsen Øygard @simenyo
- Sivert Østgård @PerspectivCollection
You need the latest, "cutting edge", version of Python installed (3.8+)
To get the prototype set up, follow the instructions below
1: Clone and cd into the repository (if you don't have it already)
git clone https://github.com/olejorga/prototype.git
cd prototype2: Install pipenv (if you don't have it already)
pip install pipenv3: Install the dependencies
pipenv install4: Enter the virtual environment
pipenv shell5: Run the protoype
pipenv run app
# ...or with reload on file change:
pipenv run devmodeTo run tests, run the following command
pipenv run tests...this will run all the unittests in the tests directory
Runs primarily on FastAPI with a little help from a couple of other modules
See the Pipfile for a list of all dependencies