diff --git a/.github/workflows/scraping.yaml b/.github/workflows/scraping.yaml index 1bcb815..f64200b 100644 --- a/.github/workflows/scraping.yaml +++ b/.github/workflows/scraping.yaml @@ -8,6 +8,7 @@ name: Scraping the repositories from Source Graph # TODO: split the commands to scrap repos and parse the dependencies # TODO: a job for index generation +# TODO: set proper concurrency settings on: [push] jobs: diff --git a/frontend/next.config.js b/frontend/next.config.js index 1b7d2e9..3538617 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -1,7 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { output: "export", - basePath: "/github-pages", + basePath: "/awesome-fastapi-projects", }; module.exports = nextConfig;