smokinjoe / advent-of-code-2023

Created with CodeSandbox
https://codesandbox.io/p/github/smokinjoe/advent-of-code-2023
0 stars 0 forks source link

Login and data input (for additional exercises) #24

Open smokinjoe opened 7 months ago

smokinjoe commented 7 months ago

Currently, it's very static how we provide input data for each of the days I've performed work on. In order to work on a new day, I have to extend the seed file, reset the DB, and I'm only allowed a single InputData type, and a choice between three different example data types.

I'd like to instead provide a user with the ability to add different variations of "Prod" data (data that's actually used to solve an advent day) and multiple variations of custom Example data (that is used to test the code).

smokinjoe commented 7 months ago

Implementing users

smokinjoe commented 7 months ago

Enhancing input data types