From 7220416596e330824c4c34684f291dc749dbead7 Mon Sep 17 00:00:00 2001 From: Novus Nota <68142933+novusnota@users.noreply.github.com> Date: Sun, 29 Sep 2024 04:01:15 +0200 Subject: [PATCH] chore: rewrite the README --- docs/README.md | 110 ++++++++++++++++++++++++++++++++++++++++++++++ docs/package.json | 1 + 2 files changed, 111 insertions(+) create mode 100644 docs/README.md diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 000000000..a8260674e --- /dev/null +++ b/docs/README.md @@ -0,0 +1,110 @@ + + + +# Welcome to ⚑ Tact Documentation + +[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build) + +Hello there! This is the source for the Tact language documentation. + +Latest docs are always available at: [docs.tact-lang.org](https://docs.tact-lang.org). + +Our goal here is to create a welcoming and rich resource that benefits all Tact developers, from beginners to experts. + +## 🌟 Join the Tact community + +Tact is not just a technology; it's a growing community of developers like you! Whether you are just starting out or have tons of experience, your contributions are valuable. + +Here's how you can contribute: + +- Organize or clarify information πŸ“ +- Make Pull Requests to improve the code or docs πŸš€ +- Share tutorials, guides, and articles πŸ“š + +Join our community chat to stay updated and collaborate: [Tact Telegram community](https://t.me/tactlang) + +## πŸ€” How can you contribute? + +Contributing is not just encouraged, it's easy! + +If you've solved a challenging problem or found a better way to explain a complex topic, share it: + +β€” Got an idea? [Open an issue](https://github.com/tact-lang/tact/issues/new). +β€” Ready to contribute? [Setup the dev environment](#setup-your-development-environment). + +### βš™οΈ Setup your development environment + +Before you submit your amazing contributions, ensure they work seamlessly. + +#### 🌩️ Quick cloud setup + +Use Gitpod for a hassle-free cloud-based IDE experience: + +[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/tact-lang/tact-docs) + +#### 🏠 Local setup + +1. Clone this GitHub repository. +2. Make sure to have the latest version of [Node.js LTS](https://nodejs.org/en/download/) installed. +3. Open your terminal in the project directory. +4. Install dependencies without modifying the `yarn.lock`: + + ``` + yarn deps + ``` + +5. Start your local development server: + + ``` + yarn dev + ``` + +This will open a new browser window displaying your local version of the documentation. Most updates are automatically reflected. + +### πŸš€ Project Structure + +Inside of this Astro + Starlight project, you'll see the following folders and files (besides others): + +``` +. +β”œβ”€β”€ public/ +β”œβ”€β”€ src/ +β”‚ β”œβ”€β”€ assets/ +β”‚ β”œβ”€β”€ content/ +β”‚ β”‚ β”œβ”€β”€ docs/ ← HERE ARE ALL THE TACT DOCUMENTATION PAGES +β”‚ β”‚ └── config.ts +β”‚ └── env.d.ts +β”œβ”€β”€ astro.config.mjs +β”œβ”€β”€ package.json +└── tsconfig.json +└── cspell.json +``` + +Starlight looks for `.md` or `.mdx` files in the `src/content/docs/` directory. Each file is exposed as a route based on its file name. The Tact docs use `.mdx` files only. + +Images can be added to `src/assets/` and embedded in MDX files with a relative link. Static assets, like favicons, can be placed in the `public/` directory. + +It's recommended that local images are kept in `src/` whenever possible, so that Astro can transform, optimize and bundle them. Files in the `public/` directory are always served or copied into the build folder as-is, with no processing, and are publicly available by a direct link. + +The local images stored in `src/` can be used by all files in the project: `.astro`, `.md`, `.mdx`, `.mdoc`, and other UI frameworks (if any). Images can be stored in any folder, including alongside your content. + +### 🧞 Commands + +All commands are run from the root of the project, from a terminal: + +| Command | Action +| :------------------------ | :----- +| `yarn deps` | Installs dependencies. +| `yarn dev` | Starts local dev server at `localhost:4321`. +| `yarn build` | Build your production site to `./dist/`. Runs CSpell and also validates all the internal links. +| `yarn preview` | Preview your build locally, before deploying. +| `yarn astro ...` | Run CLI commands like `astro add`, `astro check`, etc. +| `yarn astro -- --help` | Get help using the Astro CLI. + +### πŸ‘€ Want to learn more about the framework behind Tact docs? + +Check out [Starlight’s docs](https://starlight.astro.build/), read [the Astro documentation](https://docs.astro.build), or jump into the [Astro Discord server](https://astro.build/chat). + +## License πŸ“„ + +[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) diff --git a/docs/package.json b/docs/package.json index 06856a3c5..55629a72e 100644 --- a/docs/package.json +++ b/docs/package.json @@ -5,6 +5,7 @@ "type": "module", "scripts": { "clean": "rm -rf dist/ out/ .astro/", + "deps": "yarn install --frozen-lockfile", "dev": "astro dev", "build": "yarn clean && yarn spell && astro check && astro build", "preview": "astro preview",