diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml new file mode 100644 index 0000000..ef4d422 --- /dev/null +++ b/.forgejo/workflows/deploy.yml @@ -0,0 +1,27 @@ +on: + push: + branches: + - main + schedule: + - cron: '0 * * * *' # rebuild every hour to refresh feeds + +jobs: + deploy: + runs-on: ubuntu-latest + container: + volumes: + - /var/www/bubo:/var/www/bubo + steps: + - uses: actions/checkout@v4 + + - name: Install dependencies + run: npm install + + - name: Build Bubo + run: npm run build:bubo + + - name: Deploy to web root + run: | + apt-get update && apt-get install -y rsync + rsync -avz --delete --exclude='.git' --exclude='.forgejo' \ + ./public/ /var/www/bubo/ \ No newline at end of file diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 5da78b6..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,12 +0,0 @@ -# These are supported funding model platforms - -github: georgemandis -patreon: # -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: # Replace with a single Liberapay username -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -custom: # diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index dd84ea7..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Desktop (please complete the following information):** - - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Smartphone (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - Browser [e.g. stock browser, safari] - - Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index bbcbbe7..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: '' -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/config/feeds.json b/config/feeds.json index 55af9c8..afeeed2 100644 --- a/config/feeds.json +++ b/config/feeds.json @@ -1,23 +1,10 @@ { - "Developer News": [ - "https://hacks.mozilla.org/feed/", - "https://web.dev/feed.xml", - "https://v8.dev/blog.atom", - "https://alistapart.com/main/feed/", - "https://css-tricks.com/feed/", - "https://dev.to/feed", - "https://changelog.com/feed" + "Poterie": [ + "https://la-poterie-des-chemins-creux.fr/feed/" ], "Blogs": [ - "https://george.mand.is/feed.xml", - "https://joy.recurse.com/feed.atom" - ], - "My GitHub Projects": [ - "https://github.com/georgemandis.atom", - "https://github.com/georgemandis/bubo-rss/releases.atom", - "https://github.com/georgemandis/konami-js/releases.atom", - "https://github.com/georgemandis/konami-js/commits/main.atom", - "https://github.com/javascriptforartists/cheer-me-up-and-sing-me-a-song/commits/master.atom", - "https://github.com/georgemandis/circuit-playground-midi-multi-tool/commits/master.atom" + "https://solar.lowtechmagazine.com/fr/posts/index.xml", + "https://maia.crimew.gay/feed.xml", + "https://george.mand.is/feed.xml" ] } \ No newline at end of file