Giter Site home page Giter Site logo

sahaj-hacakthon's Introduction

Employee Management - a NaN(O) problem

What is NaN(O)

At Sahaj, tech consultants operate at the intersection between engineering and art. Simply put, they are artisans who take on complex engineering problems in the software industry across a wide spectrum of domains. Their work is deeply rooted in first principles thinking - asking fundamental questions to dissect and understand a problem which eventually leads to one-of-a-kind solutions, each as distinct as a fingerprint.

Through NaN(O), a hackathon driven by Sahaj across multiple colleges in India, they want to instill a culture of applying first principles thinking to a problem statement.


Problem statement

We need a system to be able to manage data for employees. Requests will be accepted over HTTP (API contract). No databases/libraries can be used to store/maintain data.


Technical details

  1. Your repository needs to have a Dockerfile that starts your HTTP web app
  2. Your HTTP app need to expose APIs (API contract) on port 8080
  3. No existing databases, libraries and services can be used to store the data
  4. Application needs to persist data across restarts
  5. No limitation on the programming language
  6. Do not touch the GitHub actions code. It is used to test your code automatically and score it. Any modifications will lead to immediate disqualification.
  7. Maximum time a single request can take is 10 seconds

Data to be stored

{
    id: string,
    name: string,
    city: string
}

API contract

GET /greeting

Checks whether the service is available.

Response
  • Code: 200
  • Content: Hello world!
POST /employee

Creates a new Employee and returns the employeeId

Request & Response headers

Content-Type: application/json

Body
{
    name: string,
    city: string
}
Success Response
  • Status code: 201
  • Content: { "employeeId": "<employee_id>" } (Note: Employee ID is a string)
GET /employee/:id

Returns the specified employee.

URL Params

id=[string] Required

Success Response
  • Status code: 200
  • Content: { <employee_object> }
Error Response
  • Status code: 404
  • Content: { message : "Employee with <employee_id> was not found" }
GET /employee/all

Returns list of all employees.

Success Response
  • Status code: 200
  • Content: [{ <employee_object> }]
PUT /employee/:id

Updates fields of the existing employee and returns the new object.

URL Params

id=[string] Required

Headers

Content-Type: application/json

Body
{
    name: string,
    city: string
}
Success Response
  • Code: 201
  • Content: { <employee_object> }
Error Response
  • Code: 404
  • Content: { message : "Employee with <employee_id> was not found" }
DELETE /employee/:id

Deletes existing employee record.

URL Params

id=[string] Required

Success Response
  • Status code: 200
  • Content: { <employee_object> }
Error Response
  • Status code: 404
  • Content: { message : "Employee with <employee_id> was not found" }

Competition rules

Check rules and scoring pages for details. When in doubt, ask the organizers and we will add clarifications to the page.

sahaj-hacakthon's People

Contributors

anandk008 avatar vinayakk-sahaj avatar

Watchers

 avatar

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.