Skip to content

Commit

Permalink
update remix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Najmabadi committed Apr 14, 2024
1 parent b3ba83e commit f4b9d23
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions pages/instructions/remix.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,29 @@ export default () => (
</div>
</div>
<p>
فریم‌ورک Remix این امکان را در اختیار شما قرار می‌دهد تا تجربه‌ی کاربری
سریع و مدرنی را برای کاربران خود خلق کنید. حال شما می‌توانید برنامه‌های
Remix را با ایجاد برنامه‌های{" "}
<a href="https://github.com/remix-run/remix">Remix</a> یک فریم‌ورک وب است
که به شما امکان می‌دهد که بر روی رابط کاربری برنامه خود تمرکز کنید و با
تکیه بر استانداردهای وب، یک تجربه کاربری آسان، منعطف و عالی ارائه دهید.
شما می‌توانید برنامه‌های Remix را با ایجاد برنامه‌های{" "}
<Link href="/app-deploy/nodejs/getting-started">NodeJS</Link> بر روی لیارا
دیپلوی کنید.
</p>
<p>
توجه داشته باشید که برای دیپلوی برنامه‌های Remix نیازی به ایجاد تغییر در
فایل <span className="code">package.json</span> نیست و لیارا به‌طور کامل
از این فریم‌ورک پشتیبانی می‌کند بنابراین تغییری در بخش{" "}
از این فریم‌ورک پشتیبانی می‌کند؛ بنابراین تغییری در بخش{" "}
<span className="code">scripts</span> ایجاد نکنید.
</p>
<Highlight className="json">{`"scripts": {
"build": "remix build",
"dev": "remix dev",
"postinstall": "remix setup node",
"start": "remix-serve build"
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc"
},`}</Highlight>

<p>
حالت استاندارد npm scripts در برنامه‌های Remix به‌شکل بالا است. در نهایت
دستور
حالت استاندارد scripts در برنامه‌های Remix به‌شکل بالا است. در نهایت دستور
<span className="code">liara deploy --port 3000 --platform node</span>
را اجرا کنید تا برنامه‌ی شما به لیارا منتقل شده و اجرا شود.
</p>
Expand Down

0 comments on commit f4b9d23

Please sign in to comment.