Skip to content

Commit

Permalink
📘 DOCS: Update
Browse files Browse the repository at this point in the history
  • Loading branch information
FernandoCelmer committed Jan 28, 2024
1 parent 3ee6d2b commit 4e8f0f3
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
1 change: 1 addition & 0 deletions LAST_VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.9
59 changes: 58 additions & 1 deletion docs/nav/development/development-guide.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,61 @@
March 25, 2023
Last updated January 28, 2024

---

## How to test the local package?

#### Virtual environment

- Create your virtual environment.

```bash
python -m venv venv
```

#### Environment activation

- Activate the virtual environment.

```bash
source venv/bin/activate
```

#### Install the requirements

- Install the necessary requirements to be able to test the application.

```bash
pip install -r requirements.txt --no-cache-dir
```

#### Development

- Make your changes as desired in the `./mkdocs_simple_blog` folder. You can enjoy and change whatever you want, please have fun.

```bash
ls mkdocs_simple_blog
```

#### Build and Install

- Run the script that creates and installs the local package.


```bash
python scripts/install_local.py
```

#### Test

- Run the following command to run the server.

```bash
mkdocs serve
```

#### View Template

- Now you can access the [http://127.0.0.1:8000/](http://127.0.0.1:8000/)

---

Expand Down

0 comments on commit 4e8f0f3

Please sign in to comment.