This playbook can be used as a base to add documentation to your project. When starting with documentation, the first step is to update the README.md of the project. You can start your README from the section below and remove this description
Change the title with the app name and give a one line description about the project. One line Description. Include a screenshot of the main screen of the project.
Steps on how to get the project setup in the local system. List the commands to run for installing dependencies in the project. Commands to run code in the cmd can be wrapped between bash** and **
. Follow the markdown syntax to clearly explain how the project can be setup in local.
For example, for a React or node.js project, you can install dependencies using:
yarn
# or
npm install
Copy over .env.example
as .env.local
.
First, run the development server:
yarn dev
Open http://localhost:3000 (Replace with your respective development url) with your browser to see the result.
Consider including a diagram or flowchart that shows the functionality of the project. This can be particularly helpful for more complex projects.
Proceed to explain briefly about the project structure for development. The main folder structure of the project is as follows:
├── public
├── src
│ ├── components
│ ├── helpers
│ ├── pages
│ │ ├── api
│ ├── styles
Detailed project structure can be found at project-structure.md
Finally, detail the steps for deployment to the server.
If you have written units tests in your project, you can detail the steps for the tests here.
Provide details about the license for use if required.