Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/go-vikunja/frontend
Mirror of vikunja from https://code.vikunja.io/frontend
https://github.com/go-vikunja/frontend
docker frontend javascript javascript-applications js todoapp todolist vue vuejs web-frontend webapp
Last synced: 3 months ago
JSON representation
Mirror of vikunja from https://code.vikunja.io/frontend
- Host: GitHub
- URL: https://github.com/go-vikunja/frontend
- Owner: go-vikunja
- License: agpl-3.0
- Archived: true
- Created: 2018-11-28T20:28:21.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-02-07T14:03:50.000Z (9 months ago)
- Last Synced: 2024-06-12T15:57:05.251Z (5 months ago)
- Topics: docker, frontend, javascript, javascript-applications, js, todoapp, todolist, vue, vuejs, web-frontend, webapp
- Language: Vue
- Homepage:
- Size: 22.8 MB
- Stars: 368
- Watchers: 5
- Forks: 30
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- stars - go-vikunja/frontend - Mirror of vikunja from https://code.vikunja.io/frontend (Vue)
README
# This repository was merged with the api and is now archived
You can find the new (old) code over on [vikunja/vikunja](https://kolaente.dev/vikunja/vikunja).
# Web frontend for Vikunja
> The todo app to organize your life.
[![Build Status](https://drone.kolaente.de/api/badges/vikunja/frontend/status.svg)](https://drone.kolaente.de/vikunja/frontend)
[![License: AGPL v3](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](LICENSE)
[![Download](https://img.shields.io/badge/download-v0.22.1-brightgreen.svg)](https://dl.vikunja.io)
[![Translation](https://badges.crowdin.net/vikunja/localized.svg)](https://crowdin.com/project/vikunja)This is the web frontend for Vikunja, written in Vue.js.
Take a look at [our roadmap](https://my.vikunja.cloud/share/UrdhKPqumxDXUbYpEGJLSIyNTwAnbBzVlwdDpRbv/auth) (hosted on Vikunja!) for a list of things we're currently working on!
## Security Reports
If you find any security-related issues you don't want to disclose publicly, please use [the contact information on our website](https://vikunja.io/contact/#security).
## Docker
There is a [docker image available](https://hub.docker.com/r/vikunja/api) with support for http/2 and aggressive caching enabled.
In order to build it from sources run the command below. (Docker >= v19.03)```shell
export DOCKER_BUILDKIT=1
docker build -t vikunja/frontend .
```Refer to [multi-platform documentation](https://docs.docker.com/build/building/multi-platform/) in order to build for different platforms.
## Project setup
```shell
pnpm install
```### Compiles and hot-reloads for development
```shell
pnpm run serve
```### Compiles and minifies for production
```shell
pnpm run build
```### Lints and fixes files
```shell
pnpm run lint
```