This repository has been archived on 2025-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
dotfiles/general/.project-template-aliases/python
2021-05-28 21:01:01 +02:00

10 lines
132 B
Bash

#!/usr/bin/env bash
project-venv() {
mkdir $1
cd $1
python -m venv venv
echo venv > .gitignore
source venv/bin/activate
}