chore(gitpod): add config file + update gitignore for venv part

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
This commit is contained in:
Andrei Jiroh Halili 2023-03-23 17:52:45 +00:00
parent 967b67c9e6
commit 689c755817
2 changed files with 18 additions and 0 deletions

1
.gitignore vendored
View file

@ -3,3 +3,4 @@ public_html
public_ctrl-c
site
venv
.venv

17
.gitpod.yml Normal file
View file

@ -0,0 +1,17 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml)
# and commit this file to your remote git repository to share the goodness with others.
# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart
tasks:
- init: |
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r requirements.txt
command: mkdocs serve
ports:
- port: 8000
onOpen: notify
visibility: public