File tree Expand file tree Collapse file tree 2 files changed +59
-1
lines changed
Expand file tree Collapse file tree 2 files changed +59
-1
lines changed Original file line number Diff line number Diff line change 1+ 0.0.9
Original file line number Diff line number Diff line change 1- March 25, 2023
1+ Last updated January 28, 2024
2+
3+ ---
4+
5+ ## How to test the local package?
6+
7+ #### Virtual environment
8+
9+ - Create your virtual environment.
10+
11+ ``` bash
12+ python -m venv venv
13+ ```
14+
15+ #### Environment activation
16+
17+ - Activate the virtual environment.
18+
19+ ``` bash
20+ source venv/bin/activate
21+ ```
22+
23+ #### Install the requirements
24+
25+ - Install the necessary requirements to be able to test the application.
26+
27+ ``` bash
28+ pip install -r requirements.txt --no-cache-dir
29+ ```
30+
31+ #### Development
32+
33+ - Make your changes as desired in the ` ./mkdocs_simple_blog ` folder. You can enjoy and change whatever you want, please have fun.
34+
35+ ``` bash
36+ ls mkdocs_simple_blog
37+ ```
38+
39+ #### Build and Install
40+
41+ - Run the script that creates and installs the local package.
42+
43+
44+ ``` bash
45+ python scripts/install_local.py
46+ ```
47+
48+ #### Test
49+
50+ - Run the following command to run the server.
51+
52+ ``` bash
53+ mkdocs serve
54+ ```
55+
56+ #### View Template
57+
58+ - Now you can access the [ http://127.0.0.1:8000/ ] ( http://127.0.0.1:8000/ )
259
360---
461
You can’t perform that action at this time.
0 commit comments