I have developed a fitness app and I am utilizing Redux to store all the sets and workouts. Currently, I have manually entered all the exercises into Redux data for testing purposes. However, I now have all the exercises stored in a .json file and I want to import them into the app so that users can access them.
Do I need to import the .json file into Redux or another part of the app and then somehow provide Redux with access to it? I am unsure because users will be selecting the exercises and making changes such as adding descriptions, adjusting the number of sets and reps (which are all stored in Redux).
Edit
I am new to coding which is why I have not explored using an api. I simply want to release the beta version. Additionally, there are thousands of exercises in the .json file, which is why entering them manually into Redux is not feasible.