HistoricTimes is a webapp that displays historic events that happened at a specific time (hour and minute).
For example end of the WWI hostilities at 11am in 1918.
Users are free to add historic events (with sources) and they will be displayed after being reviewed by admins.
The app is available on historic-times.herokuapp.com
Note: it will not be available anymore when heroku ends free plans on nov. 2022
- Django, Materializecss, JQuery
- For production : deployment via gunicorn on heroku cf this awesome guide
Note: Not sure I will maintain the app, it was a small project for fun but here are some ideas
- Web app translation + allow multiple labels for translation
- Have a "load more" button or pagination
- Upvote events (needs to be safe and that would require accounts)
- Order events by date, votes...
- If accounts then social login could be nice
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
- Of course Stackoverflow
- developer.mozilla.org
- Adobe express logo maker
- Make a readme
- Choose a license
- Gen secret :
python -c 'import secrets; print(secrets.token_hex(100))'
- Create reqs :
pip-chill -v > requirements.txt
(uncomment django and move it) - Reset pip packages :
pip freeze --exclude-editable | xargs pip uninstall -y
- Reset db in dev :
find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
find . -path "*/migrations/*.pyc" -delete
- Remove sqlite or drop, then redo migrations
- Translation :
- Create .po files :
django-admin makemessages --all
- Compile them :
django-admin compilemessages
- Create .po files :
- Production guide
- python manage.py check --deploy
- https://devcenter.heroku.com/articles/python-support#supported-python-runtimes
- heroku create historic-times --region=eu
- git remote -v
- git push heroku main
- heroku run python manage.py migrate
- heroku run python manage.py createsuperuser