This project is a combination of coursework performed in both the WBD5100 and the WBD5204 modules. The project consists of two parts:
-
The frontend (user section) made using: -- VUE framework -- axios, vuetify and vuex -- a cookie
-
The backend (for the admin section and backend scripting for the frontend) made using: -- PHP -- SQL -- composer
- run git clone https://github.com/nlukic97/Final-project-3rd-trimester
- run cd wbd5104-final-project
- Import the hillingdonchippie.sql file found in the root of this project.
- Open the PHP-backend folder in a terminal and run: -- php -S localhost:8087
- You may now view this project in localhost:8087
- Email: admin@admin.com
- Password: admin
- Follow all the steps for the Backend and admin view setup (WBD5100) if they have not been performed yet.
- Open the vue-frontend folder in another terminal window and run:
- npm install
- npm run serve
- You may now view this project in your localhost url - provided by your terminal.
- localhost:8087/api/items -- a get request to this url will return all the items we have in our database table "items"
- localhost:8087/api/orders -- A post request to this url will submit data to the database tables "orders" and "item_order".
- localhost:8087/api/faq -- A get request to this url returns all the FAQ from our database table "faq".
- reads for a cookie every time a view is loaded, and creates a cookie when the "accept cookies" prompt is confirmed - stopping the prompt from appearing when loading a new view.
- has a custom 404 page
- has mandatory image uploads when creating a new item. However, it has optional image changing when editing an item. Uploading a new item image will delete the old item's image.
- has a custom 404 page
Added access control headers to allow * routes to be executed so that the user would not have to install the extension "allow cors" as was previously required.