https://github.com/rustbas/currenter
Simple currency converter.
https://github.com/rustbas/currenter
Last synced: 8 months ago
JSON representation
Simple currency converter.
- Host: GitHub
- URL: https://github.com/rustbas/currenter
- Owner: rustbas
- License: mit
- Created: 2023-12-10T08:46:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-03T17:21:39.000Z (9 months ago)
- Last Synced: 2025-07-01T00:40:02.893Z (9 months ago)
- Language: Python
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Currenter
Simple currency converter.
# Initialization
## DockerHub
You can pull it from DockerHub:
```console
foo@bar:~$ docker run --rm -d -p 8000:80 wtukatyr/currenter:latest
```
## Manual building
1. Clone the repository:
```console
foo@bar:~$ git clone https://github.com/rustbas/currenter.git
foo@bar:~$ cd currenter
```
2. Build the docker image:
```console
foo@bar:~/currenter$ docker build -t currenter .
```
3. Run the docker container:
```console
foo@bar:~/currenter$ docker run --rm -d -p 8000:80 currenter:latest
```
# Usage
1. Open `localhost:8000` in your browser
2. Choose currencies
3. Insert amount
4. Click `Submit`
# TODO
1. [ ] Change `sqlite` to `postgreql`
2. [ ] Add button to update the database
3. [ ] Add frontend
4. [ ] Add more currencies
5. [ ] Refactor database workflow