mirror of
https://github.com/fmhy/edit.git
synced 2026-02-19 01:31:41 +11:00
Add feedback API
This commit is contained in:
parent
bf504e0b26
commit
b9bebb6c84
13 changed files with 2051 additions and 110 deletions
24
.github/assets/README.md
vendored
24
.github/assets/README.md
vendored
|
|
@ -1,24 +0,0 @@
|
|||
---
|
||||
image: /static/banner4.png
|
||||
icon: ":wave:"
|
||||
---
|
||||
# Welcome
|
||||
|
||||

|
||||
|
||||
**The Largest Collection of Free Stuff On The Internet!**
|
||||
|
||||
* Anyone can suggest [changes or corrections](https://rentry.org/fmhyedit) to the wiki.
|
||||
* If you're adding a new site, please [search](https://raw.githubusercontent.com/nbats/FMHYedit/main/single-page) first to make sure we don't already have it.
|
||||
* Approved edits will be applied to this site and all [🔒 backups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/backups).
|
||||
* You can send us stuff directly via [💬 Discord](https://redd.it/17f8msf).
|
||||
* You can discuss the wiki or anything you'd like on our [🐭 Lemmy](https://lemmy.dbzer0.com/c/freemediaheckyeah).
|
||||
* You can also checkout our subreddit, [r/FREEMEDIAHECKYEAH](https://www.reddit.com/r/FREEMEDIAHECKYEAH/) to know about any major updates to the wiki.
|
||||
|
||||
***
|
||||
|
||||
Emoji Legend:
|
||||
|
||||
* 🌐 - 3rd Party Indexes
|
||||
* ↪️ - Storage Page Links
|
||||
* ⭐ - Community Recommendations
|
||||
39
.github/workflows/deploy-api.yml
vendored
Normal file
39
.github/workflows/deploy-api.yml
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
name: Deploy API
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- vitepress
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 6
|
||||
- uses: pnpm/action-setup@v2.4.0
|
||||
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
cache: 'pnpm'
|
||||
|
||||
- run: pnpm install --no-frozen-lockfile
|
||||
|
||||
- name: Build
|
||||
run: pnpm api:build
|
||||
env:
|
||||
NITRO_PRESET: cloudflare
|
||||
|
||||
- name: Publish to Cloudflare
|
||||
uses: cloudflare/wrangler-action@3
|
||||
with:
|
||||
apiToken: ${{ secrets.CF_API_TOKEN }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue