Skip to content

Commit

Permalink
content: challenge time
Browse files Browse the repository at this point in the history
  • Loading branch information
studioTeaTwo committed Dec 3, 2023
1 parent f553925 commit 375dfe7
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
PUBLIC_DEVTOOLS_ON=true
2 changes: 1 addition & 1 deletion posts/000_test-flight/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ The 🥷 ships by stealth. Are you ready?
<hr id="l402" hidden>
Good!

<span style="font-style: italic;">Taking off...</span>
<p style="font-style: italic;">Taking off...</p>

![test flight](./test_flight.jpg)
14 changes: 14 additions & 0 deletions posts/001_challege-time/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: challenge time
date: 2023-12-04
---

## Now available in TESTNET

All you need is to get the preimage and to input it in devtools. Chop your own wood, and it will warm you twice.

<hr id="l402" hidden>

![SuccessKid](https://upload.wikimedia.org/wikipedia/en/f/ff/SuccessKid.jpg)

Paths are made by walking.
3 changes: 2 additions & 1 deletion src/routes/articles/[slug]/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<script>
import qrcode from 'qrcode';
import { dev } from '$app/environment';
import { PUBLIC_DEVTOOLS_ON } from '$env/static/public';
export let data;
Expand Down Expand Up @@ -37,7 +38,7 @@
</div>
<div class="paywall-invoice-text">{data.paywall.invoice}</div>

{#if dev}
{#if dev || PUBLIC_DEVTOOLS_ON}
<div class="devtools">
<div>devtools</div>
<form method="POST" action="?/devToolsPreimage">
Expand Down

0 comments on commit 375dfe7

Please sign in to comment.