Giter Site home page Giter Site logo

os-template-test's People

Contributors

ccoldwell avatar

Watchers

 avatar  avatar

os-template-test's Issues

new new new new new

Modified again

 

Code Repo: https://github.com/bcgov/tfrsWiki: https://github.com/bcgov/tfrs/wiki

BACKEND DEVELOPMENT:

  • A Python/Django server was developed that implements a REST interface and database design for the specifications of the TFRS application. 
  • The database is implement in POSTGRESQL
  • Users in the system are authenticated by Siteminder (via an independent process) however roles authorization is going to be developed in a future milestone.

MILESTONES

As a trading partner I need to be able to navigate through a series of self-service screens to:

  1. view information regarding past, proposed and pending credit-related activity including a real-time credit balance and list of activities that may impact that balance.
  2. enter and submit the information required to propose a credit transaction to a trading partner; accept a proposed trade from a trading partner and submit that transaction proposal to the Director for approval.
  3. view the information entered by the user on Transaction Details screen before proposing it to a trading partner or submitting it to the Director for approval.
  4. review before authorising the transaction and submitting it to the Director for approval or saving it for future.
  5. post a credit transfer opportunity. The offer needs to have the same information that a credit transaction proposal would have, without the transfer partner. Offer and credit transfers are separate entities.
  6. respond to a credit transfer opportunity with acceptance of the terms, or respond to the credit transfer opportunity with a proposal that has modified terms

The Low Carbon Fuels Branch staff need to be able to:

  1. input transactions to award credits for a "Part 3 Agreement" or to add validated fuel supply credits or to retire credits used for offsets in annual compliance reporting
  2. sort and search the list of all transactions and be able to export/download the tabular data for analysis in excel.
  3. add companies, contacts, users, roles and permissions through the Swagger API
  4. recommend approval of a proposed low carbon fuel credit transfer
  5. approve the credit transfers
  6. retire credits from or adjust a company's credit balance

Acceptance Criteria

To be paid for this opportunity, you will:

  1. Participate as a part of our team's sprint planning workshop from 1pm to 4pm on July 18th, 2017 at 3rd Floor - 1012 Douglas Street in Victoria, BC. The planning session can be rescheduled if the selected individual is not available at that time.
  2. Spend a minimum of 2 hours per weekday (Tuesday - Thursday, excluding holidays, between the hours of 8:30 AM and 5:00 PM) working in person with us at our office (1012 Douglas Street in Victoria, BC) for the duration of your work. We want you to work side-by-side with our back-end developer to implement the desired functionality in our dev environment.
  3. Develop the screens in REACT using the balsamiq wireframes with the following directions:
    1. Implement a Client REST web service to consume the provided Swagger REST API Specifications
    2. Use the Gov 2.0 Bootstrap Skeleton for look and feel,
    3. implement the provided Behavior Driven Development scenarios and system messaging,
    4. create the NavUnit templates for automated functional testing,
    5. create functions for validation of form data,
  4. Use Trello to document the work completed, to demonstrate completion of the work in this opportunity, and include as appropriate references and links on each trello task to github commits
  5. Conduct knowledge transfer with the Ministry Full Stack Developer and Front-End Developer.

Proposal Evaluation Criteria

Evaluation Criteria

DEVELOPING THE TRANSPORTATION FUELS REPORTING SYSTEM WEBSITE BACK-END (BCDX-MEM-003)

This was changed

 

Code Repo: https://github.com/bcgov/tfrs

Wiki: https://github.com/bcgov/tfrs/wiki

Backend development:

A Python/Django server was developed that implements a REST interface and database design for the initial specification of the TFRS application. Additional back-end development work is needed to refine the server by reusing a [Swagger Code Generator](https://github.com/bcgov/Swagger-Codegen-Extension) mechanism to generate the code for a revised Swagger specification and refactor/add custom functions as needed to implement the new REST API.

One key path in the Swagger specification is the /api/User. Extend the User API implementation to associate a user with their authentication information received in the HTTP header information. Specifically, all users in the system will be authenticated by Siteminder (via an independent process) such that Siteminder information (UserID, UserGUID) will be available in the HTTP header. Extract that information and use it to find in the database information about the user accessing the application.

The Swagger Code Generator currently generates (amongst other code) Python/Django Models for the definitions defined in the Swagger specification. Django's ORM capabilities are subsequently used to generate the Database Model from those generated Models. Work is needed to extend the Code generator and to override some Django ORM capabilities to alter the behaviour of the generated database model. This effort will mimic comparable features implemented in the C#/.NET Core/Entity-Framework version of the generator.

  - Change the item naming style to meet the NRS Standard (e.g. all upper case names with '\_' separators, no table prefixes)

  - Push comments describing the items in the design (e.g. tables and attributes) into the database metadata

  - Force the database to use UUIDs as keys vs. traditional sequential IDs

  - Extend tables to include standard auditing fields, populated via application and/or database triggers.

 

User Stories

 

As a trading partner I need to be able to navigate through a series of self-service screens to:

  1. view information regarding past, proposed and pending credit-related activity including a real-time credit balance and list of activities that may impact that balance.
  2. enter and submit the information required to propose a credit transaction to a trading partner; accept a proposed trade from a trading partner and submit that transaction proposal to the Director for approval.
  3. view the information entered by the user on Transaction Details screen before proposing it to a trading partner or submitting it to the Director for approval.
  4. review before authorising the transaction and submitting it to the Director for approval or saving it for future.
  5. post a credit transfer opportunity. The offer needs to have the same information that a credit transaction proposal would have, without the transfer partner. Offer and credit transfers are separate entities.
  6. respond to a credit transfer opportunity with acceptance of the terms, or respond to the credit transfer opportunity with a proposal that has modified terms

The Low Carbon Fuels Branch staff need to be able to:

  1. input transactions to award credits for a "Part 3 Agreement" or to add validated fuel supply credits or to retire credits used for offsets in annual compliance reporting.
  2. sort and search the list of all transactions and be able to export/download the tabular data for analysis in excel.
  3. add companies, contacts, users, roles and permissions through the Swagger API
  4. recommend approval of a proposed low carbon fuel credit transfer
  5. approve the credit transfers
  6. retire credits from or adjust a company's credit balance

Acceptance Criteria

To be paid for this opportunity, you will:

1. Participate as a part of our team's sprint planning workshop from 1pm to 4pm on June 28th, 2017 at 3rd Floor - 1012 Douglas Street in Victoria, BC. The planning session can be rescheduled if the selected individual is not available at that time.

2. Spend a minimum of 2 hours per weekday (Tuesday - Thursday, excluding holidays, between the hours of 8:30 AM and 5:00 PM) working in person with us at our office (1012 Douglas Street in Victoria, BC) for the duration of your work. We want you to work side-by-side with our front-end developer and DevOps specialist to implement the desired functionality in our dev environment.

3. Use the existing code generator and write the required custom code to implement the back-end

       a. model,

       b. controller,

       c. form endpoints,

       d. validation of form data, and

       e. automated tests for the revised set of REST end-points.

The Swagger definition for the application is in the TFRS github repo in the APISpec folder.

4. Extend the *User API as appropriate to relate the User information from the HTTP request header to a user record in the TFRS database.

5. Extend the existing swagger code generator to produce additional code that will result in a Database Model that meets the Database Architecture Standards of the Natural Resources Sector (NRS), and use the revised generator to generate the TFRS Database Model

6. Use Trello to document the work completed, to demonstrate completion of the work in this opportunity, and include as appropriate references and links on each trello task to github commits

7. Conduct knowledge transfer with the Ministry Full Stack Developer.

Proposal Evaluation Criteria

Please reference the issue name "Developing the Transportation Fuels Reporting System website back-end (BCDX-MEM-003)" in your proposal.

Informational Open House

On Thursday, June 22nd and 23rd, we will host two information sessions from 12:00PM to 1:00PM, for interested developers to talk with our team about the work. If you'd like to attend, please email [email protected].

Please also feel free to ask questions via the comments section on the issue in GitHub.

Scoring criteria:

Please provide:  

- Your confirmation of being able to meet all of the Acceptance Criteria by August 4, 2017 assuming being able to work at 50% capacitiy.

- A short (around 200 words or less would be nice) summary of your experience working with agile projects (40 points).

- References to your relevant experience and demonstrated ability to do the work (60 points).  

- (preferred) a link to examples of your work (e.g. GitHub projects).

new new new new new

new new new new new asdasd 




Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.




Brillant Opportunity

Value: $10,000.00Closes: 0:00 PST, Friday, November 24, 2017Location: Victoria In-person work NOT required

Opportunity Description

Brillant Opportunity

Acceptance Criteria

Brillant Opportunity

How to Apply

Go to the Opportunity Page, click the Apply button above and submit your proposal by 16:00 PST on 0:00 PST, Friday, November 24, 2017.

We plan to assign this opportunity by Tuesday, June 20, 2017 with work to start on Tuesday, June 20, 2017.

If your proposal is accepted and you are assigned to the opportunity, you will be notified by email and asked to confirm your agreement to the Code With Us terms and contract.

Proposal Evaluation Criteria

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.