Skip to content

Commit 4e8f0f3

Browse files
📘 DOCS: Update
1 parent 3ee6d2b commit 4e8f0f3

File tree

2 files changed

+59
-1
lines changed

2 files changed

+59
-1
lines changed

‎LAST_VERSION‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.0.9

‎docs/nav/development/development-guide.md‎

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,61 @@
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

0 commit comments

Comments
 (0)