Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 3.19 KB

README.md

File metadata and controls

55 lines (42 loc) · 3.19 KB

SlideSpeak coding challenge: Build a PowerPoint to PDF marketing tool

The challenge!

Build a front-end implementation as well as a back-end service to convert PowerPoint documents to PDF format. This should be done by implementing a simple Next.js front-end that posts a file to a Python server. You don’t have to do the converting logic yourself as you can use unoconv or unoserver to do this (you can see more about this in the acceptance criteria). The front-end is also already implemented in the /frontend folder. You only need to add the necessary logic to switch between the steps and convert the file via the API that you're going to build.

Acceptance criteria

Back-end API

Front-end app

Nice to haves / tips

  • Uses unoserver to convert PowerPoint to PDF via docker compose
  • The logic of the front-end ideally should not rely on useEffect too much since it can be difficult to track what is happening
  • Tests
  • Use conventional commit message style: https://www.conventionalcommits.org/en/v1.0.0/
  • Lint your code
  • Keep commits clean
  • If you want to be really fancy you can add queuing with Celery