/poc-emmental

This is the Feedback News challenge ! A repository of tasks in order to release one small deliverable fact-checks exploration website

poc-emmental

Welcome to the Feedback News challenge !

Here is a briefing of tasks (divided into five milestone) in order to release one small deliverable fact-checks exploration website.

Typical duration for the exercise would be ten days of work for a beginner developer using Docker, Postgres, Python, Flask, Redux, React. In the end, the challenger needs to share to the Feedback News team one git repository with some README and code to be tested.

Features to develop

The application must provide:

  • i) a Flask API http://localhost:80/reviews that returns existing reviews in the database as JSON format,

  • ii) a website welcome/search page allowing users to search the reviews by keywords on http://localhost:3000:

reviews

  • iii) a website result page showing all the reviews containing the keyword in their titles: http://localhost:3000?keywords=<keywords>:

reviews with keywords

  • iv) finally, a website page template for each review http://localhost:3000/reviews/<reviewId> listing all the instances repeating the claim or content, and all the social media accounts having spread it:

review

  • v) i there is still time, the application should possibly allow a form for the user to add an other appearance for one specific review, and add this appearance in the postgres database:

review with appearance

Tech tasks

The challenge is split into five steps, each of these has its own branch on this repository for further explanation :

  1. poc-docker: the task is to build a docker postgres flask environment to setup all the application,

  2. poc-data: once the stack is up, the database needs to be fed with real data, and all is reachable via the /reviews rest api,

  3. poc-react: next step consists in installing a front react redux boilerplate to display roughly these review items fetched via api,

  4. poc-reviews: this is the core task dedicated to implement the features ii), iii) iv), ie the website main user story,

  5. poc-form: an extra task to achieve the v) feature.