chore: show badges on front page

This commit is contained in:
Ferdinand Mütsch 2020-11-28 20:44:39 +01:00
parent 903defca99
commit a0e64ca955
7 changed files with 13 additions and 73 deletions

3
.gitignore vendored
View File

@ -6,5 +6,6 @@ wakapi
build
*.exe
*.db
config.yml
config*.yml
!config.default.yml
config.ini

View File

@ -1,6 +1,6 @@
# 📈 wakapi
![](https://img.shields.io/github/license/muety/wakapi)
![](https://badges.fw-web.space/github/license/muety/wakapi)
![GitHub release (latest by date)](https://badges.fw-web.space/github/v/release/muety/wakapi)
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/muety/wakapi)
![Docker Cloud Build Status](https://badges.fw-web.space/docker/cloud/build/n1try/wakapi)

View File

@ -1,21 +0,0 @@
env: dev
app:
custom_languages:
jsx: JSX
vue: Vue
security:
password_salt:
insecure_cookies: false
cookie_max_age: 172800
db:
host: localhost
port: 3306
user: wakapi_user
password: wakapi
name: wakapi_local
dialect: mysql
max_conn: 2
server:
port: 3000
listen_ipv4: 127.0.0.1
base_path: /

View File

@ -1,22 +0,0 @@
env: dev
app:
custom_languages:
jsx: JSX
vue: Vue
abc: Fooscript
security:
password_salt:
insecure_cookies: false
cookie_max_age: 172800
db:
host: localhost
port: 5432
user: wakapi_user
password: wakapi
name: wakapi_local
dialect: postgres
max_conn: 2
server:
port: 3000
listen_ipv4: 127.0.0.1
base_path: /

View File

@ -1,27 +0,0 @@
env: development
server:
listen_ipv4: 127.0.0.1
port: 3000
base_path: /
app:
cleanup: false # only edit, if you know what you're doing
aggregation_time: '02:16' # time at which to run daily aggregation batch jobs
custom_languages:
vue: Vue
jsx: JSX
db:
host: # leave blank when using sqlite3
port: # leave blank when using sqlite3
user: # leave blank when using sqlite3
password: # leave blank when using sqlite3
name: wakapi_db.db # database name for mysql / postgres or file path for sqlite (e.g. /tmp/wakapi.db)
dialect: sqlite3 # mysql, postgres, sqlite3
max_conn: 2
security:
password_salt: # CHANGE !
insecure_cookies: false
cookie_max_age: 172800

View File

@ -1 +1 @@
1.17.0
1.17.1

View File

@ -19,6 +19,7 @@
<div class="flex flex-col text-white">
<h1 class="text-4xl font-semibold antialiased text-center mb-2">Keep Track of <span class="text-green-700">Your</span> Coding Time 🕓</h1>
<p class="text-center text-gray-500 text-xl my-2">Wakapi is an open-source tool that helps you keep track of the time you have spent coding on different projects in different programming languages and more. Ideal for statistics freaks any anyone else.</p>
<div class="flex justify-center mt-4 mb-8 space-x-2">
<a href="login">
<button type="button" class="py-1 px-3 rounded bg-green-700 hover:bg-green-800 text-white font-semibold">🚀 Try it!</button>
@ -32,9 +33,11 @@
</button>
</a>
</div>
<div class="flex justify-center my-8">
<img src="assets/images/screenshot.png">
</div>
<div class="flex flex-col items-center mt-10">
<h1 class="font-semibold text-xl text-white m-0 border-b-4 border-green-700">Features</h1>
<div class="mt-4 text-lg">
@ -50,6 +53,12 @@
</ul>
</div>
</div>
<div class="flex justify-center space-x-2 mt-12">
<img src="https://badges.fw-web.space/github/license/muety/wakapi?color=%232F855A&style=flat-square">
<img src="https://badges.fw-web.space/github/go-mod/go-version/muety/wakapi?color=%232F855A&style=flat-square">
<img src="https://badges.fw-web.space/endpoint?color=%232F855A&style=flat-square&label=wakapi&url=https://wakapi.dev/api/compat/shields/v1/n1try/interval:any/project:wakapi">
</div>
</div>
</main>