-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add new auth with magic.link #61
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
53a3150
feat: add new auth with magic.link
hugomrdias c68ee03
fix: add pin api
hugomrdias 3626e91
fix: add manual deploy
hugomrdias 02ca1ae
chore: add workflow name
hugomrdias cb12ca4
chore: add pr deploy
hugomrdias 881a5ec
chore: fix ci
hugomrdias f74af9c
chore: add working directory
hugomrdias bca03dc
chore: chango magic account
hugomrdias a49bd1b
fix: fix auth flow and several ui tweaks
hugomrdias f041078
fix: typo in button
hugomrdias fe35b29
fix: enable files button
hugomrdias bfb5192
fix: lint errors
hugomrdias cf57ffd
chore: fix test cmd
hugomrdias c417045
fix: update wrangler config
hugomrdias 0864fbc
chore: add cluster folder to gitignore
hugomrdias b7f9106
fix: change pinata var
hugomrdias a0462f4
fix: add cluster to dev
hugomrdias bbc1b56
fix: fix redirect on public pages
hugomrdias 6251dad
fix: feedback
hugomrdias b1dd02f
chore: remove docs job
hugomrdias 5136fe9
fix: client tests
hugomrdias db30ed5
fix: add manual deploy action
hugomrdias File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: API | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
name: Deploy | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Publish app | ||
uses: cloudflare/wrangler-action@1.3.0 | ||
with: | ||
apiToken: ${{ secrets.CF_API_TOKEN }} | ||
workingDirectory: 'site' |
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: Manual Deploy | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
description: 'Choose an environment to deploy to: <staging|production>' | ||
required: true | ||
default: '' | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
name: Deploy | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Publish app | ||
uses: cloudflare/wrangler-action@1.3.0 | ||
with: | ||
apiToken: ${{ secrets.CF_API_TOKEN }} | ||
workingDirectory: 'site' | ||
environment: ${{ github.event.inputs.environment }} |
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,21 @@ | ||
name: Website | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'website/**' | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- 'website/**' | ||
|
||
jobs: | ||
check: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- run: yarn install | ||
- run: yarn test:website |
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 |
---|---|---|
|
@@ -34,3 +34,4 @@ worker | |
yarn.lock | ||
package-lock.json | ||
site/public | ||
.cluster |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please create an issue to re-instate.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#66