GrogBase is a platform where users can rate and discover new wines and wineries. A perfect oppurtunity for adventure and to get exposed to new cultures!
Firstly, clone the repository to a folder where PHP files can be hosted:
git clone https://github.com/S3BzA/GrogBaseNOTE: In order for this application to work, you need a way to host PHP files. An example of such a tool is XAMPP (https://www.apachefriends.org)
Inside of the frontend folder, install all npm dependencies needed for the frontend
npm installThen, modify src/environments/environment.ts to specify the URL to the backend API
export const environment = {
production: false,
apiEndpoint: "http://localhost/clone/path/backend/src/API.php"
};Finally, to start up the front end simply run:
npm run startFrom there, the website should be available at http://localhost:4200/