mirror of https://github.com/lukechilds/lnbits.git
Browse Source
- README cleanups and link to documentation - Improve dev setup instructions - Fix js linting errors - Move local setup instructions to installation docs - Project link fix, closes #42 - Notes about frontend - Clarify different LND backendsLogin
Dennis Reimann
5 years ago
committed by
GitHub
15 changed files with 189 additions and 156 deletions
@ -1,17 +1,23 @@ |
|||
|
|||
<q-expansion-item |
|||
group="extras" |
|||
icon="swap_vertical_circle" |
|||
label="Info" |
|||
:content-inset-level="0.5" |
|||
> |
|||
<q-card> |
|||
<q-card-section> |
|||
<h5 class="text-subtitle1 q-my-none">Events: Sell and register ticket waves for an event</h5> |
|||
<p>Events alows you to make a wave of tickets for an event, each ticket is in the form of a unqiue QRcode, which the user presents at registration. Events comes with a shareable ticket scanner, which can be used to register attendees.<br/> |
|||
<small> Created by, <a href="https://github.com/benarc">Ben Arc</a></small></p> |
|||
</q-card> |
|||
</q-card-section> |
|||
|
|||
</q-card-section> |
|||
<q-expansion-item |
|||
group="extras" |
|||
icon="swap_vertical_circle" |
|||
label="Info" |
|||
:content-inset-level="0.5" |
|||
> |
|||
<q-card> |
|||
<q-card-section> |
|||
<h5 class="text-subtitle1 q-my-none"> |
|||
Events: Sell and register ticket waves for an event |
|||
</h5> |
|||
<p> |
|||
Events alows you to make a wave of tickets for an event, each ticket is |
|||
in the form of a unqiue QRcode, which the user presents at registration. |
|||
Events comes with a shareable ticket scanner, which can be used to |
|||
register attendees.<br /> |
|||
<small> |
|||
Created by, <a href="https://github.com/benarc">Ben Arc</a> |
|||
</small> |
|||
</p> |
|||
</q-card-section> |
|||
</q-card> |
|||
</q-expansion-item> |
|||
|
@ -1,17 +1,22 @@ |
|||
|
|||
<q-expansion-item |
|||
group="extras" |
|||
icon="swap_vertical_circle" |
|||
label="Info" |
|||
:content-inset-level="0.5" |
|||
> |
|||
<q-card> |
|||
<q-card-section> |
|||
<h5 class="text-subtitle1 q-my-none">Support Tickets: Get paid sats to answer questions</h5> |
|||
<p>Charge people per word for contacting you. Possible applications incude, paid support ticketing, PAYG language services, contact spam protection.<br/> |
|||
<small> Created by, <a href="https://github.com/benarc">Ben Arc</a></small></p> |
|||
</q-card> |
|||
</q-card-section> |
|||
|
|||
</q-card-section> |
|||
<q-expansion-item |
|||
group="extras" |
|||
icon="swap_vertical_circle" |
|||
label="Info" |
|||
:content-inset-level="0.5" |
|||
> |
|||
<q-card> |
|||
<q-card-section> |
|||
<h5 class="text-subtitle1 q-my-none"> |
|||
Support Tickets: Get paid sats to answer questions |
|||
</h5> |
|||
<p> |
|||
Charge people per word for contacting you. Possible applications incude, |
|||
paid support ticketing, PAYG language services, contact spam |
|||
protection.<br /> |
|||
<small> |
|||
Created by, <a href="https://github.com/benarc">Ben Arc</a></small |
|||
> |
|||
</p> |
|||
</q-card-section> |
|||
</q-card> |
|||
</q-expansion-item> |
|||
|
@ -0,0 +1,12 @@ |
|||
{ |
|||
"requires": true, |
|||
"lockfileVersion": 1, |
|||
"dependencies": { |
|||
"prettier": { |
|||
"version": "2.0.5", |
|||
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.0.5.tgz", |
|||
"integrity": "sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==", |
|||
"dev": true |
|||
} |
|||
} |
|||
} |
@ -1,5 +1,8 @@ |
|||
{ |
|||
"devDependencies": { |
|||
"prettier": "^2.0.5" |
|||
}, |
|||
"scripts": { |
|||
"lint": "prettier --write lnbits/static/js/** lnbits/core/static/js/** lnbits/extensions/*/templates/**" |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue