forked from EddieHubCommunity/BioDrop
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: load json files into the DB and app uses DB (EddieHubCommunity#…
…5765) * feat: manage data with forms EddieHubCommunity#5575 * docs: manage data with forms * fix: removed tabs for forms * chore: refactored profile manage pages * wip: loading json to db via api * WIP: links next * feat: save links + display in order * fix: social links displaying * feat: milestone json to db * WIP: milestone with transactions * feat: save milestones to profile * feat: testomonials save + display * fix: testimonial pinned totals on tab * feat: events page * fix: tags api * fix: search + map for db * feat: reload json secret * fix: removed package changes * fix: failing tests by reloading data * feat: gh action to load profiles after deployment * fix: using promise all for async * fix: using promise all for all async * fix: test tear down * fix: removed form/api related files for another pr * Rename vercel.yml to vercel-prod.yml * ci: vercel deploy to beta * ci: vercel beta domain * ci: vercel beta alias domain * ci: vercel beta alias * ci: vercel beta sleep alias * ci: vercel beta output tmp url * fix: api secret * fix: load files into db after deploy * fix: parameter name in action * fix: delete unused action * docs: social links * fix: only reload data on profile changes * fix: socials not in links still saved * fix: exclude stats in api response * WIP * fix: loading json files * fix: load json data * fix: debugging links * fix: more profile checks * chore: trigger deployment * fix: beta domain for preview * fix: vercel preview domain assign * fix: onlyl deploy to preview after tests * chore: comment to fix * fix: testimonial pinned * fix: split data load tests * fix: profile location cache * fix: deployment actions * fix: user location for tests
- Loading branch information
1 parent
0fb38d8
commit bce1d99
Showing
37 changed files
with
1,076 additions
and
565 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ NODE_ENV="development" | |
GITHUB_ID="" | ||
GITHUB_SECRET="" | ||
NEXTAUTH_SECRET="" | ||
|
||
LINKFREE_API_SECRET="development" |
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,20 @@ | ||
name: Load profiles into DB | ||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [Deploy to Vercel] | ||
|
||
jobs: | ||
load-data: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dorny/paths-filter@v2 | ||
id: changes | ||
with: | ||
filters: | | ||
data: | ||
- 'data/**' | ||
- name: load json files | ||
if: steps.changes.outputs.data == 'true' | ||
run: curl -f https://linkfree.io/api/system/reload?secret=${{ secrets.LINKFREE_API_SECRET }} |
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
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
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
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.