# Start Project

## Virtual Environment

### Create a Virtual Environment

```python
1. mk my_app

2. cd my_app

3. virtualenv.exe venv

4.  .\venv\Scripts\activate
```

### Conda Environment

```python
# Environment List
conda env list  

# Activate environment
conda activate z35
```

## Git

### create a new repository on the command line

```python
echo "# markdown" >> README.md
git init
git add [README.md]
git commit -m "first commit"
git remote add origin [https://github.com/dragon-library/markdown.git]
git push -u origin master
```

### Add

```python
git add content/*
git commit -m "Upload folder"
git push origin master
```

### Push

```python
git remote add origin [https://github.com/dragon-library/markdown.git]
git push -u origin master
```

### View Setting

```python
git config --list --show-origin
```

### Setting an email address in Git:

```python
git config --global user.email "yo_sarawut@hotmail.com"
git config --global user.name "yosarawut"
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://yo-sarawut.gitbook.io/tutorials/snippets/start-project.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
