This is the home to the documentation of Atri engine and its surrounding ecosystem. This includes the following :
- Tutorials: A walkthrough of beginner and advanced examples of websites and apps that can be created using Atri framework
- Guides: Practical steps to help users accomplish specific tasks in frontend or backend development or deployment. We also cover utility functions that make backend development through Python easy.
- Reference: API reference of frontend components available in visual editor and how to interact with them from backend
- Concepts: Concepts of visual editor and backend
-
Create a fork of this repository.
-
Clone your fork.
# Clone your fork of the repo into the current directory
git clone https://github.com/<your-username>/framework-docs.git
- Configure the remotes.
# Navigate to the newly cloned directory
cd framework-docs
# Assign the original repo to a remote called "upstream"
git remote add upstream https://github.com/Atri-Labs/framework-docs.git
- Install
yarn
.
$ yarn
- Start local development.
$ yarn start
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
- Build the site
Before opening a Pull Request (PR), build the site to ensure there are no issues in your code.
$ yarn build
This command generates static content into the build
directory and can be served using any static content hosting service.
- Open a Pull Request (PR) with clear title and description.
- This documentation follows Diátaxis framework for technical writing.
- This documentation website is built using Docusaurus 2, a modern static website generator.