# 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"
```
