GithubHelp home page GithubHelp logo

atharvtiwari / sahaj-nano-employee-mgmt Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 12 KB

Persistent JSON based database with a functional CRUD web API implemented for Sahaj NaN(O) hackathon.

Dockerfile 15.19% Python 84.81%

sahaj-nano-employee-mgmt's Introduction

Logo

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.

Fastest applications win.


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
  8. Data should be persisted in /home/

FAQ

  1. Do not run a development webserver with watch enabled in your app. Your tests will fail.
  2. If your greeting end point test is not passing, please check the output you produce. It needs to be exactly what is requested.
  3. When in doubt, please check the Github Actions logs for details
  4. Logs for the performance tests will not be shared

Data to be stored

{
    employeeId: 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 /employees/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.

Sample Instructions for coding/committing

  • git clone git repository url (Skip this step if using github codespaces)
  • cd repository name (Skip this step if using github codespaces)
  • Goto server.py
  • Begin coding
  • Code needs to be tested via github? Execute following commands in the terminal location of your repository
    • git add .
    • git commit -m 'any message regarding your changes'
    • git push
  • Wait for build to complete in github actions logs.
  • If build is green, you should see the score on the leader board, else check with actions logs.

Sample Instructions for Codespaces installation

  • On your browser after accepting the github invitation,
    • Celect "Code" dropdown
    • Select the "Codespaces" tab.
    • Select "Create codespace on main"
  • Continue from step 3 of Sample Instructions for coding/commit

sahaj-nano-employee-mgmt's People

Contributors

atharvtiwari avatar dlokesh 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.