2023-11-16
Goal
To add a new app to the DIMMiN App called task_log
that can start tracking my habits for me.
Pomodoro
None today, just working casually to get back into site development.
Notes
Sam Yoon from frisbee had an amazing idea to implement our frisbee randomizer into his web app instead of going through the process of building an android / IOS app. I thought this was brilliant, and it meant that I could finally start tracking tasks on my own domain!
Therefore, I created the new app using the
python manage.py startapp task_log
command. The About page served as a great reference for what rendering a (mostly) individualized app might look like. I added the URLs and was able to successfully access the page via the server app. Committed changes, will push to production when the app itself is actually ready to use.
Results
- Fixed up / removed unnecessary code used to run the About page
- Created the task_log app
- Made the task_log app accessible via the web app
Next Time
- Start working on designing the actually Task log app
- Should be simple, just add or remove tasks and click a button that tells whether the task was completed in the last 24 hours.
- Another option is to allow the user to "clock in" and "clock out" of the task
- Another option might be to add notes about a given task for a given day
- Going to need to find out how to store this kind of data in a way that is easily accessible and easily usable
- Make the task_log app custom to each user