https://github.com/devmount/losung
A web app to display the Losung for today
https://github.com/devmount/losung
Last synced: 5 months ago
JSON representation
A web app to display the Losung for today
- Host: GitHub
- URL: https://github.com/devmount/losung
- Owner: devmount
- Created: 2018-11-07T09:40:21.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2025-04-30T21:39:03.000Z (9 months ago)
- Last Synced: 2025-04-30T22:34:01.580Z (9 months ago)
- Language: Vue
- Homepage: http://losung.devmount.de
- Size: 1.58 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Losung
A web app to display the Losung for today. Provides a simple navigation to show previous or next days Losung.
## Demo

## For developers
1. Get all files
```bash
git clone https://github.com/devmount/losung
```
2. Install all dependencies
```bash
cd losung
npm install
```
3. Get the CSV source file from Herrnhuter Brüdergemeinde for the current year, rename and move it to the `public` directory. This step has to be repeated every year. Here an example for 2022:
```bash
wget https://www.losungen.de/fileadmin/media-losungen/download/Losung_2022_CSV.zip
unzip Losung_2022_CSV.zip
mv "Losungen Free 2022.csv" public/2022.csv
```
4. Either start the development server with hot reload at localhost:8080 ...
```bash
npm run dev
```
5. ... or create a production build with minification
```bash
npm run build
```