Skip to content

Commit 938f0a0

Browse files
committed
Some modifications
1 parent a232feb commit 938f0a0

File tree

4 files changed

+5
-171
lines changed

4 files changed

+5
-171
lines changed

.github/workflows/fly.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121

2222
environment:
2323
name: production
24+
url: https://f42demo-my-remix-app.fly.dev/
2425

2526
steps:
2627
- uses: actions/checkout@v4

app/entry.client.tsx

-18
This file was deleted.

app/entry.server.tsx

-140
This file was deleted.

app/routes/_index.tsx

+4-13
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,23 @@ import type { MetaFunction } from "@remix-run/node";
22

33
export const meta: MetaFunction = () => {
44
return [
5-
{ title: "New Remix App" },
5+
{ title: "New Remix App on Fly.io" },
66
{ name: "description", content: "Welcome to Remix!" },
77
];
88
};
99

1010
export default function Index() {
1111
return (
1212
<div style={{ fontFamily: "system-ui, sans-serif", lineHeight: "1.8" }}>
13-
<h1>Welcome to Remix</h1>
13+
<h1>Welcome to Remix on Fly.io</h1>
1414
<ul>
1515
<li>
1616
<a
1717
target="_blank"
18-
href="https://remix.run/tutorials/blog"
18+
href="https://fly.io/docs/js/frameworks/remix/"
1919
rel="noreferrer"
2020
>
21-
15m Quickstart Blog Tutorial
22-
</a>
23-
</li>
24-
<li>
25-
<a
26-
target="_blank"
27-
href="https://remix.run/tutorials/jokes"
28-
rel="noreferrer"
29-
>
30-
Deep Dive Jokes App Tutorial
21+
Run a Remix App on Fly.io
3122
</a>
3223
</li>
3324
<li>

0 commit comments

Comments
 (0)