Skip to content

IhwaHussain/orders

 
 

Repository files navigation

NYU DevOps Project Template

License Python codecov CI

Overview

This project template contains starter code for your class project. The /service folder contains your models.py file for your model and a routes.py file for your service. The /tests folder has test case starter code for testing the model and the service separately. All you need to do is add your functionality. You can use the lab-flask-tdd for code examples to copy from.

Automatic Setup

The best way to use this repo is to start your own repo using it as a git template. To do this just press the green Use this template button in GitHub and this will become the source for your repository.

Manual Setup

You can also clone this repository and then copy and paste the starter code into your project repo folder on your local computer. Be careful not to copy over your own README.md file so be selective in what you copy.

There are 4 hidden files that you will need to copy manually if you use the Mac Finder or Windows Explorer to copy files from this folder into your repo folder.

These should be copied using a bash shell as follows:

    cp .gitignore  ../<your_repo_folder>/
    cp .flaskenv ../<your_repo_folder>/
    cp .gitattributes ../<your_repo_folder>/

Contents

The project contains the following:

.github/workflows   - Folder with Continuous Integration Support
.gitignore          - this will ignore vagrant and other metadata files
.flaskenv           - Environment variables to configure Flask
.gitattributes      - File to gix Windows CRLF issues
.devcontainers/     - Folder with support for VSCode Remote Containers
dot-env-example     - copy to .env to use environment variables
pyproject.toml      - Poetry list of Python libraries required by your code

service/                   - service python package
├── __init__.py            - package initializer
├── config.py              - configuration parameters
├── routes.py              - module with service routes
├── common                 - common code package
|   ├── cli_commands.py    - Flask command to recreate all tables
|   ├── error_handlers.py  - HTTP error handling code
|   ├── log_handlers.py    - logging setup code
|   └── status.py          - HTTP status constants
└   models                 - module with business models
    ├── __init__.py        - model initializer
    ├── item.py            - item model
    ├── order.py           - order model
    ├── persistent_base.py - abstract model class

tests/                     - test cases package
├── __init__.py            - package initializer
├── test_cli_commands.py   - test suite for the CLI
├── test_models.py         - test suite for business models
└── test_routes.py         - test suite for service routes

Functions

These are the RESTful routes for orders and items

Endpoint          Methods  Rule
----------------  -------  -----------------------------------------------------
index             GET      /

list_orders       GET      /orders
create_orders     POST     /orders
get_orders        GET      /orders/<order_id>
update_orders     PUT      /orders/<order_id>
delete_orders     DELETE   /orders/<order_id>
pack_orders       PUT      /orders/<order_id>/packing
ship_orders       PUT      /orders/<order_id>/ship
deliver_orders    PUT      /orders/<order_id>/deliver
cancel_orders     PUT      /orders/<order_id>/cancel

list_items        GET      /orders/<int:order_id>/items
create_items      POST     /orders/<order_id>/items
get_items         GET      /orders/<order_id>/items/<item_id>
update_items      PUT      /orders/<order_id>/items/<item_id>
delete_items      DELETE   /orders/<order_id>/items/<item_id>

The test cases have 95% test coverage and can be run with pytest

License

Copyright (c) 2016, 2024 John Rofrano. All rights reserved.

Licensed under the Apache License. See LICENSE

This repository is part of the New York University (NYU) masters class: CSCI-GA.2820-001 DevOps and Agile Methodologies created and taught by John Rofrano, Adjunct Instructor, NYU Courant Institute, Graduate Division, Computer Science, and NYU Stern School of Business.

About

NYU DevOps Orders Service Spring 2024

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 73.4%
  • JavaScript 9.7%
  • Gherkin 6.8%
  • HTML 6.5%
  • Shell 2.3%
  • Makefile 1.0%
  • Other 0.3%