-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(whatislove-dev): add webmentions to articles wd-512 (#533)
* feat(whatislove-dev): add button block wd-512 * feat(whatislove-dev): add input block wd-512 * feat(whatislove-dev): add mentions markup wd-512 * feat(whatislove-dev): add webmentions to articles wd-512 * build(whatislove-dev): add cron rebuild functionality wd-512 * build(whatislove-dev): add api keys to cd action wd-512 * ci(whatislove-dev): add secrets to ci action wd-512
- Loading branch information
1 parent
d04d6a0
commit 0c3eac2
Showing
22 changed files
with
682 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,9 @@ node_modules | |
build | ||
process.mp4 | ||
|
||
# cache | ||
.cache | ||
|
||
# misc | ||
.DS_Store | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# | ||
# COMMON | ||
# | ||
ENVIRONMENT=development | ||
|
||
# | ||
# API | ||
# | ||
DEVTO_API_KEY=1234567890 | ||
WEBMENTION_API_KEY=0987654321 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import 'dotenv/config' | ||
import process from 'node:process' | ||
|
||
let data = { | ||
API: { | ||
DEVTO_API_KEY: /** @type {string} */ (process.env[`DEVTO_API_KEY`]), | ||
WEBMENTION_API_KEY: /** @type {string} */ ( | ||
process.env[`WEBMENTION_API_KEY`] | ||
), | ||
}, | ||
COMMON: { | ||
ENVIRONMENT: /** @type {string} */ (process.env[`ENVIRONMENT`]), | ||
}, | ||
} | ||
|
||
export default data |
Oops, something went wrong.