This is container for all the codes and materials related to the Frappe framework & Scripts that I use on a daily basis. I hope this repository will be helpful for developers who want to Coding and write scripts to interact with Frappe components.. Please, If you find any errors or need corrections in any of the files, please submit a pull request and I will review and merge it.
- Most of the files in this repository are written in MarkDown files and format.
or
- To use Mkdocs, Follow these steps:>>
1) first: You need to create a python environment.
# windows
py -m venv venv --prompt "mkdocs"
# linux and mac
python3 -m venv venv --prompt "mkdocs"
2) Then: Activate the newly created environment using the following command
# windows
.\venv\Scripts\activate
# linux and mac
source venv/bin/activate
3) Install the requirements using the following command
pip install -r requirements.txt
- `requirements.txt` file contains material-mkdocs which is a theme used with Mkdocs.
4) Finally: run the server use the following command
mkdocs serve
Enjoy!