Skip to content
This repository was archived by the owner on Jul 18, 2022. It is now read-only.

Form validation #1

Merged
merged 5 commits into from
May 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
156 changes: 152 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,154 @@
# Project requirements
# Fullstack Price Aggregator
UK supermarket price aggregator via web scraping. This was developed for my university project as an MVP so there are aspects which don't function correctly. I may update it in the future.

* Docker

Install docker for your platform, open a terminal and cd into the project root, from here run the command "docker-compose up --build".
This will build the image
## Features
* Python REST backend via FastAPI
* VueJS Frontend SPA with TypeScript using [this template](https://github.com/Armour/vue-typescript-admin-template).
* JWT Authentication between backend and frontend
* CLI
* [Docker](https://github.com/docker)
* [Poetry](https://github.com/python-poetry/poetry)
* Web Scraped prices via [selectorlib](https://selectorlib.com/)
* Scrape JavaScript enabled pages using [splash](https://github.com/scrapinghub/splash)


## Setup
Ensure you have Docker and Node.js installed.

1. Clone this repository
2. cd into project root and run `docker-compose up --build -d`. The starts the backend and on first run will build all the necessary containers which can take a few minutes.
3. Once the backend has finished building, obtain a shell with `docker-compose exec backend bash`.
4. To initialise the database run `python manage.py createdb` from within the bash shell.
* (Optional) To seed the db with dummy data run `python manage.py seeddb`
Note all passwords are set to **password**
5. `cd` into the client directory run `npm install` which will install the required node modules.
6. run `npm run serve` which will serve the client frontend.


## Project URLs

| URL | Description |
|:----------------------------------------:|:--------------------------------------------------------------------------------------------|
| [0.0.0.0:8000/api](0.0.0.0:8000/api) | Backend JSON API |
| [0.0.0.0:8000/docs](0.0.0.0:8000/docs) | Backend OpenAPI/Swagger-generated API Reference Documentation |
| [0.0.0.0:8000/redoc](0.0.0.0:8000/redoc) | Alternative interactive documentation provided by [ReDoc](https://github.com/Redocly/redoc) |
| [localhost:9527](localhost:9527) | Frontend VueJS Single Page Application |


## CLI
The backend includes a CLI which is heavily inspired by [Netflix's Dispatch](https://github.com/Netflix/dispatch).

[`typer`](https://github.com/tiangolo/typer) (same author as FastAPI) was used to create a CLI for the project and is accessed via [manage.py](./server/manage.py).

To run commands you will need to a shell running inside the backend container with:

docker-compose run backend bash

To see all the available commands:

root@72293bee6b37:/app# python manage.py
Usage: manage.py [OPTIONS] COMMAND [ARGS]...

Options:
--help Show this message and exit.

Commands:
config Display application configuration.
createdb Creates an empty database.
createrole Add role to database.
createuser Create new user in the database.
develop Start a development server with reload.
dropdb Drop the existing database.
routes Display application routes and dependencies.
seeddb Add fake data to database.
shell Starts an interactive shell with app object imported.

#### Routes

root@72293bee6b37:/app# python manage.py routes

Application Endpoints
Path Methods Dependencies
----------------------------- --------- --------------------------------------------------------
/api/v1/users/ GET ['RoleChecker: Roles: admin,user']
/api/v1/users/ POST ['RoleChecker: Roles: admin,user']
/api/v1/users/{id} GET ['RoleChecker: Roles: admin,user']
/api/v1/users/{id} PUT ['RoleChecker: Roles: admin,user']
/api/v1/users/{id} DELETE ['RoleChecker: Roles: admin,user']
/api/v1/users/{id}/roles GET ['RoleChecker: Roles: admin,user']
/api/v1/users/{id}/roles PUT ['RoleChecker: Roles: admin,user']
/api/v1/users/{id}/shops GET ['RoleChecker: Roles: admin,user']
/api/v1/users/{id}/shops PUT ['RoleChecker: Roles: admin,user']
/api/v1/roles/ GET ['RoleChecker: Roles: admin,user']
/api/v1/roles/ POST ['RoleChecker: Roles: admin,user']
/api/v1/roles/{id} GET ['RoleChecker: Roles: admin,user']
/api/v1/roles/{id} PUT ['RoleChecker: Roles: admin,user']
/api/v1/roles/{id} DELETE ['RoleChecker: Roles: admin,user']
/api/v1/shops/ GET ['RoleChecker: Roles: admin,user']
/api/v1/shops/ POST ['RoleChecker: Roles: admin,user']
/api/v1/shops/{id} PUT ['RoleChecker: Roles: admin,user']
/api/v1/shops/{id} DELETE ['RoleChecker: Roles: admin,user']
/api/v1/shops/listings/ GET ['RoleChecker: Roles: admin,user']
/api/healthcheck GET []

#### Config

python manage.py config

Application Configuration
Setting Value(s)
-------------------------- --------------------------------------------------------------------
APP_DIR /app/app
STATIC_DIR /app/app/static
EMAIL_TEMPLATES_DIR /app/app/static/email-templates/html
PROJECT_NAME Fastapi Backend
SERVER_HOST 0.0.0.0
CORS_WHITELIST ['http://localhost', 'http://localhost:8000', 'http://0.0.0.0:8000']
FASTAPI_ENV development
DEBUG False
LOG_LEVEL debug
FIRST_SUPERUSER [email protected]
FIRST_SUPERUSER_PASSWORD a5dbf43e07f4d19e5b73bc89a8f74
USERS_OPEN_REGISTRATION True
SECRET_KEY **********
JWT_AUTH_LIFETIME_SECONDS 604800
JWT_EMAIL_LIFETIME_SECONDS 3600
SMTP_USER [email protected]
SMTP_PASSWORD **********
SMTP_TLS False
SMTP_SSL False
SMTP_HOST mailhog
SMTP_PORT 1025
POSTGRES_USER postgres
POSTGRES_PASSWORD **********
POSTGRES_HOST postgres
POSTGRES_PORT 5432
POSTGRES_DB fastapi_backend

## Frontend views

### Login view
![Login View](./imgs/1-login.png "Login View")

### Admin dashboard view
![Admin dashboard view](./imgs/2-admin-dashboard.png "Admin dashboard view")

### User CRUD view
![User CRUD View](./imgs/3.0-user-CRUD.png "User CRUD view")

### User create view
![User create view](./imgs/3.1-user-create.png "User create view")

### User profile view
![User profile view](./imgs/4-user-profile.png "User profile view")

### Shop CRUD view
![Shop CRUD view](./imgs/5.0-shop-CRUD.png "Shop CRUDview")

### Shop select view
![Shop select view](./imgs/5.1-shop-select.png "Shop select view")

### Scraped listings view
![Scraped listings view](./imgs/6-prices-display.png "Scraped listings view")

98 changes: 97 additions & 1 deletion client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,20 @@
"dependencies": {
"axios": "^0.19.2",
"clipboard": "^2.0.6",
"codemirror": "^5.53.2",
"core-js": "^3.6.5",
"echarts": "^4.7.0",
"element-ui": "^2.13.0",
"fuse.js": "^5.1.0",
"js-cookie": "^2.2.1",
"json5": "^2.1.3",
"jsonlint": "^1.6.3",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.1.0",
"register-service-worker": "^1.7.1",
"screenfull": "^5.0.2",
"script-loader": "^0.7.2",
"simple-progress-webpack-plugin": "^1.1.2",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
Expand All @@ -35,6 +39,7 @@
},
"devDependencies": {
"@types/clipboard": "^2.0.1",
"@types/codemirror": "0.0.91",
"@types/js-cookie": "^2.2.5",
"@types/node": "^13.11.0",
"@types/nprogress": "^0.2.0",
Expand Down
Loading