Software Development Lifecycles WMGZON project source code. https://wmgzon.luke-else.co.uk
Go to file
2024-01-22 08:33:28 +00:00
cicd Changed directory in ci/cd pipeline 2024-01-15 18:23:39 +00:00
controllers Continuing to add correct documentation to components within the application 2024-01-22 08:33:28 +00:00
models Fixed all pep8 warnings 2024-01-21 22:22:29 +00:00
scripts Applied auto pep 8 changes 2024-01-21 22:06:06 +00:00
static Completed functionality for user to Create products on the site 2024-01-21 21:33:55 +00:00
templates Fixed all pep8 warnings 2024-01-21 22:22:29 +00:00
tests Ensure env vars are set for test environment 2024-01-21 22:40:31 +00:00
.gitignore #3 Added ability for images to be uploaded to the site 2024-01-19 16:35:23 +00:00
.gitlab-ci.yml Ensure env vars are set for test environment 2024-01-21 22:40:31 +00:00
app.py Fixed all pep8 warnings 2024-01-21 22:22:29 +00:00
docker-compose.yml #3 Create product form made, data is processed on the backend. Image data not currently saved 2024-01-19 13:31:06 +00:00
dockerfile Updated script files to run tests on load 2024-01-12 14:55:52 +00:00
README.md Updated readme to include testing instructions 2024-01-09 22:31:23 +00:00
requirements.txt Added pep8 style tests 2024-01-21 21:58:45 +00:00

runme
id version
01HK0BF4BTBSKR9VWAP1KGD2S7 v2.0

WMGZON

Flask web application serving WMGZON and its relevant backend services.

Initialisation

To start you need to create a virtual environment and load in the required dependencies for the project

python -m venv .venv
./.venv/Scripts/Activate.ps1
pip install -r requirements.txt

Testing

To run the full suite of unit tests for the webapp simply run the following command in the venv

pytest

Running

Pre-Requisites

  • Docker daemon is installed and running.
  • Docker compose is installed.

Instructions

In order to run the web app, simply use the command

docker-compose up -d

to run the container in a detatched mode.