Final Project: Python Flask APIFork the Repository thirdygayares/keriderya-api Clone Your Repository python -m venv venv #Create a Virtual Environment venv\Sc pip install -r requirements.txt git clone https://github.com/JoshuaNato/keriderya-api-release-test-v1.0.1.git FLASK_...Nov 30, 2024·2 min read
Activity 33: Angular Recipe Grid1. Project Setup: Create a new folder for your recipe component: Create the necessary files: recipe.service.ts recipe.model.ts recipe.component.ts recipe.component.html export interface RecipeModel{ id: number; name: string; ingredi...Nov 22, 2024·2 min read
Activity 32: Angular Library GridCreate a List of Object Data Structures import { Injectable } from '@angular/core'; import { Book } from '../models/library.mode'; @Injectable({ providedIn: 'root', }) export class LibraryService { private bookList: Book[] = [ { title:...Nov 21, 2024·2 min read
Activity 31: Angular Ecommerce Product ListCreate a List of Object Data Structures product.service.ts product.model.ts product.component.ts product.component.html The shows a section of an online store with product cards displaying various items: Shoes, Polo Shirt, Watch, and Wireless Earbu...Nov 21, 2024·1 min read
Activity 19: Research on Python SQLAlchemySQLAlchemy is a powerful SQL toolkit and Object Relational Mapper (ORM) for Python, providing a comprehensive set of tools for interacting with databases. Here's an overview of the key concepts and features of SQLAlchemy: 1. Core Components SQLAlche...Oct 20, 2024·3 min read
Activity 18: Fork testdeploy Github Repository and deploy it to Render.comhttps://test-deploy-ciud.onrender.com/students/1Oct 16, 2024·1 min read
Activity 17 CREATE DATABASE WITH CONSTRAINTConvert this 5 ERD to a database Implement foreign and primary key constraints, ensuring the primary key is set to auto-increment. Additionally, insert at least 50 dummy records into each table. you can use cmd or GUI QuizDb SELECT * FROM user; ...Oct 15, 2024·2 min read