add readme and edit the titles of the frontend
This commit is contained in:
parent
7b8484267c
commit
7bc580facb
13
README.md
Normal file
13
README.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Krll
|
||||
Krll, a privacy-friendly URL shortener
|
||||
|
||||
https://krll.me
|
||||
|
||||
## Dev
|
||||
Copy `.env.example` to `.env` and edit it
|
||||
```
|
||||
python -m venv venv
|
||||
source ./venv/bin/activate/
|
||||
pip install -r requirements.txt
|
||||
uvicorn main:app --reload
|
||||
```
|
|
@ -1,5 +1,5 @@
|
|||
{% extends "layout.html" %}
|
||||
{% block title %}Krll - URL Shortener{% endblock %}
|
||||
{% block title %}About Krll{% endblock %}
|
||||
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% extends "layout.html" %}
|
||||
{% block title %}Krll - URL Shortener{% endblock %}
|
||||
{% block title %}Krll URL Shortener{% endblock %}
|
||||
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
|
|
Loading…
Reference in a new issue