https://github.com/amssdias/html_generator
An interface to create html code.
https://github.com/amssdias/html_generator
Last synced: 3 months ago
JSON representation
An interface to create html code.
- Host: GitHub
- URL: https://github.com/amssdias/html_generator
- Owner: amssdias
- Created: 2022-01-12T18:55:29.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-12T19:00:02.000Z (over 3 years ago)
- Last Synced: 2025-01-13T19:24:39.752Z (5 months ago)
- Language: Python
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[python-download]: https://www.python.org/downloads/
[django-link]: https://www.djangoproject.com/
HTML Generator
![]()
An interface from where you can write the text and with just a button, it will generate an HTML web page. This is useful for creating rapid online documentation of projects.
### Built with

## :hammer: Getting started
### Pre requisites
- [Python][python-download] - 3.9 or up
- [Django][django-link] - 4.0.1### Installation
#### Clone the project
```
git clone https://github.com/amssdias/html_generator
cd html_generator
```#### Install dependencies & activate virtualenv
1. Pipenv ***(make sure you have [Python][python-download] installed)***:
```python
pip install pipenv # For Windows
brew install pipenv # For MacOs
sudo apt install pipenv # For Debian Buster+
sudo dnf install pipenv # For Fedora```
2. Install packages:```python
pipenv install # will create a virtual environment with all the modules needed
```3. Activate virtualenv:
```python
pipenv shell # To activate the virtual environment```
If any doubts here's a link to some more explanations: [Pipenv](https://pipenv-fork.readthedocs.io/en/latest/basics.html)
## :mag_right: Usage
```python
pipenv shell
python manage.py runserver
```Paste this link on your browser:
**http://127.0.0.1:8000/**