mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-29 15:45:44 +01:00
27 lines
831 B
Python
27 lines
831 B
Python
import os
|
|
from pathlib import Path
|
|
|
|
|
|
def get_parent_folder(folder_name):
|
|
current_path = Path(os.path.abspath(__file__)) # get the path of the current script
|
|
|
|
while current_path.name != folder_name: # while the current folder name is not 'folder_name'
|
|
current_path = current_path.parent # go up one level
|
|
|
|
return current_path.parent
|
|
|
|
|
|
def setup_workspace(project_name):
|
|
root = get_parent_folder('pilot')
|
|
create_directory(root, 'workspace')
|
|
project_path = create_directory(os.path.join(root, 'workspace'), project_name)
|
|
create_directory(project_path, 'tests')
|
|
return project_path
|
|
|
|
|
|
def create_directory(parent_directory, new_directory):
|
|
new_directory_path = os.path.join(parent_directory, new_directory)
|
|
os.makedirs(new_directory_path, exist_ok=True)
|
|
|
|
return new_directory_path
|