diff --git a/.firebaserc b/.firebaserc new file mode 100644 index 00000000..477d4630 --- /dev/null +++ b/.firebaserc @@ -0,0 +1,5 @@ +{ + "projects": { + "default": "ccv-honeycomb-docs" + } +} diff --git a/.github/workflows/firebase-hosting-merge.yml b/.github/workflows/firebase-hosting-merge.yml new file mode 100644 index 00000000..5b39c240 --- /dev/null +++ b/.github/workflows/firebase-hosting-merge.yml @@ -0,0 +1,20 @@ +# This file was auto-generated by the Firebase CLI +# https://github.com/firebase/firebase-tools + +name: Deploy to Firebase Hosting on merge +on: + push: + branches: + - main +jobs: + build_and_deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: npm ci && npm run build + - uses: FirebaseExtended/action-hosting-deploy@v0 + with: + repoToken: ${{ secrets.GITHUB_TOKEN }} + firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_CCV_HONEYCOMB_DOCS }} + channelId: live + projectId: ccv-honeycomb-docs diff --git a/.github/workflows/firebase-hosting-pull-request.yml b/.github/workflows/firebase-hosting-pull-request.yml new file mode 100644 index 00000000..738faa42 --- /dev/null +++ b/.github/workflows/firebase-hosting-pull-request.yml @@ -0,0 +1,21 @@ +# This file was auto-generated by the Firebase CLI +# https://github.com/firebase/firebase-tools + +name: Deploy to Firebase Hosting on PR +on: pull_request +permissions: + checks: write + contents: read + pull-requests: write +jobs: + build_and_preview: + if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: npm ci && npm run build + - uses: FirebaseExtended/action-hosting-deploy@v0 + with: + repoToken: ${{ secrets.GITHUB_TOKEN }} + firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_CCV_HONEYCOMB_DOCS }} + projectId: ccv-honeycomb-docs diff --git a/.gitignore b/.gitignore index 45606504..5353cf59 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,8 @@ # Generated files .docusaurus .cache-loader +.cache +.firebase # ENV .env.local @@ -21,3 +23,6 @@ # Misc .DS_Store .vscode + +# Firebase +./firebase diff --git a/docusaurus.config.js b/docusaurus.config.js index 8afc4d9d..0d433a86 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -3,7 +3,7 @@ module.exports = { tagline: "A template for reproducible psychophysiological tasks for clinic, laboratory, and home use.", url: "https://brown-ccv.github.io", - baseUrl: "/honeycomb-docs/", + baseUrl: "/", onBrokenLinks: "throw", onBrokenMarkdownLinks: "warn", favicon: "img/bee.svg", @@ -103,7 +103,10 @@ module.exports = { { className: "code-block-delete-line", line: "highlight-delete-next-line", - block: { start: "highlight-delete-start", end: "highlight-delete-end" }, + block: { + start: "highlight-delete-start", + end: "highlight-delete-end", + }, }, ], }, diff --git a/firebase.json b/firebase.json new file mode 100644 index 00000000..f4755549 --- /dev/null +++ b/firebase.json @@ -0,0 +1,10 @@ +{ + "hosting": { + "public": "build", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**" + ] + } +}