Skip to content

Commit

Permalink
chore: update enc and mod.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ynwd committed Jul 26, 2024
1 parent 3d6f9f4 commit f7ff445
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ node_modules/
styles.css
*.db
m1/
m2/
m2/
.env
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"lock": false,
"tasks": {
"start": "ENV=DEVELOPMENT deno run --unstable-kv -A --watch web/mod.ts",
"start": "ENV=DEVELOPMENT deno run --env --unstable-kv -A --watch web/mod.ts",
"build": "deno run -A --unstable-kv web/mod.ts --build ",
"prod": "deno run --unstable-kv -A web/mod.ts",
"test": "rm -rf .hydrate && rm -rf cov && deno test -A --coverage=cov && deno coverage cov",
Expand Down
2 changes: 1 addition & 1 deletion web/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ s.page("/", {
return ctx.render({
title: "Fast & Modular Web Framework",
description:
"Build high-performance server-side rendering (SSR) web applications that leverage a flat modular architecture for improved readability",
"Build high-performance server-side rendering (SSR) web applications with flat modular architecture",
image: "https://fastro.dev/fastro.png",
start: Deno.env.get("ENV") === "DEVELOPMENT"
? "http://localhost:8000/docs/start"
Expand Down

0 comments on commit f7ff445

Please sign in to comment.