-
Notifications
You must be signed in to change notification settings - Fork 11
feat: implemented Remix server adapter and runtime for Netlify #16
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
Merged
nickytonline
merged 43 commits into
main
from
nickytonline/add-adapter-and-server-runtime
Feb 8, 2023
Merged
Changes from 3 commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
e141d98
feat: implemented Remix server adapter and runtime for Netlify
nickytonline 8e56897
chore: added the demo edge site to test the Netlify remix server adapter
nickytonline 79bb70d
chore: added default remix config for the Netlify adapter
nickytonline 379fcf9
chore: remove extension from import
nickytonline c5b3b36
chore: added some more defaults to the default remix config
nickytonline 2faaffa
Update packages/remix-server-adapter/src/globals.ts
nickytonline 4bc07ea
chore: renamed '@netlify/remix-server-adapter to @netlify/remix-adapter
nickytonline 569bc20
chore: fixed globals
nickytonline 959a30b
chore: forgot to commit updated package lock
nickytonline a58e06e
chore: configured project to deploy edge demo site
nickytonline 853ac97
chore: renamed remix-server-runtime to remix-runtime
nickytonline cb6cdee
chore: renamed remix-adapter to remix-edge-adapter
nickytonline 21d9bf8
Merge remote-tracking branch 'origin/main' into nickytonline/add-adap…
nickytonline 8b3cd57
Merge remote-tracking branch 'origin/main' into nickytonline/adapter-…
nickytonline 84fdc49
Merge remote-tracking branch 'origin/main' into nickytonline/adapter-…
nickytonline aaaff6f
chore: fixed lint errors
nickytonline 7b03c6c
chore: automatic prettier formatting
nickytonline 1007d4d
chore: avoid husky in CI
nickytonline a0038db
chore: avoid husky in CI (again)
nickytonline f570e9c
Merge remote-tracking branch 'origin/main' into nickytonline/add-adap…
nickytonline 9974faa
test: added E2E tests
nickytonline 7b0970a
chore: react 18 hydration errors in Cypress handled now
nickytonline 360b94b
chore: clarified a comment
nickytonline 6f258da
chore: added GH workflow for Cypress
nickytonline e0b4e65
chore: trying an if-env fix again
nickytonline 3b2e8cc
Merge remote-tracking branch 'origin/main' into nickytonline/add-adap…
nickytonline e9927b0
chore: fixed build setup for git push deploy
nickytonline 4333b20
chore: fixed edge functions path
nickytonline f788018
chore: fixed a typo in Cypress YAML config 🙃
nickytonline c443950
chore: added ReadME for @netlify/remix-runtime
nickytonline 0c15673
chore: added ReadME for @netlify/remix-edge-adapter
nickytonline ce64771
chore: updated ReadME for edge demo site
nickytonline af313d0
chore: first attempt at project README
nickytonline 67fe4d4
chore: changed script names from compile to build
nickytonline cfb4cbd
chore: added the build:watch script
nickytonline 8676091
chore: set Cypress containers to 1 as we only spec file atm
nickytonline 9ce4b79
chore: added a comment about the demo site's server build path
nickytonline 27c4b51
Update README.md
nickytonline cd4d261
chore: corrected Netlify Edge functions links and referenced the prod…
nickytonline daafe3f
chore: set cache-control to 60 seconds for the demo site
nickytonline f616d4f
chore: added the x-nf-runtime header to responses returned from our r…
nickytonline 993a262
chore: corrected what the product is called
nickytonline 6ed4e65
Update packages/edge-demo-site/README.md
nickytonline 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 hidden or 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 |
---|---|---|
|
@@ -128,3 +128,8 @@ dist | |
.yarn/build-state.yml | ||
.yarn/install-state.gz | ||
.pnp.* | ||
|
||
build/ | ||
|
||
# Local Netlify folder | ||
.netlify |
This file contains hidden or 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 |
---|---|---|
@@ -1,21 +1,14 @@ | ||
MIT License Copyright (c) 2023 Nick Taylor | ||
MIT License Copyright (c) 2023 Netlify Inc. | ||
|
||
Permission is hereby granted, free of | ||
charge, to any person obtaining a copy of this software and associated | ||
documentation files (the "Software"), to deal in the Software without | ||
restriction, including without limitation the rights to use, copy, modify, merge, | ||
publish, distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to the | ||
following conditions: | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
nickytonline marked this conversation as resolved.
Show resolved
Hide resolved
|
||
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the | ||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit | ||
persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice | ||
(including the next paragraph) shall be included in all copies or substantial | ||
portions of the Software. | ||
The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or | ||
substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF | ||
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO | ||
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE | ||
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | ||
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
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.
Uh oh!
There was an error while loading. Please reload this page.