https://github.com/davidesarra/timeuntil
Flask web app to count down to any date and time (time zone aware)
https://github.com/davidesarra/timeuntil
countdown docker flask-web poetry python timezone
Last synced: 6 months ago
JSON representation
Flask web app to count down to any date and time (time zone aware)
- Host: GitHub
- URL: https://github.com/davidesarra/timeuntil
- Owner: davidesarra
- Created: 2020-02-09T16:22:44.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-07-07T17:16:28.000Z (over 3 years ago)
- Last Synced: 2025-04-23T23:34:55.451Z (9 months ago)
- Topics: countdown, docker, flask-web, poetry, python, timezone
- Language: Python
- Homepage:
- Size: 43 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Time Until
Time Until is a Flask web app to count down to any date and time in any time
zone.
## How to run the app
### Docker
- Install [Docker](https://www.docker.com/)
- Launch the app via `make run_docker`
### Locally
- Install [Poetry](https://python-poetry.org/)
- Install [Yarn](https://yarnpkg.com/)
- Create a virtual environment with Python `3.8`
- Activate the virtual environment
- Install the app via `make install_locally`
- Launch the app via `make run_locally`
## Development guidelines
The use of Poetry is experimental. There are still some limits when having to
build a container to run the app. Namely a minimal `setup.py` and a full list
of requirements are still needed. In particular, before each commit run
`make update_requirements` which uses Poetry to export the requirements list
used in the container. This step will be automated via git pre-commit hooks.