feldroy / django-crash-starter

The Cookiecutter template for the Django Crash Course tutorial by Daniel and Audrey Feldroy.
https://www.feldroy.com/products/django-crash-course
94 stars 38 forks source link

Is it possible to create everycheese project code in the current directory? #225

Open ruslaniv opened 3 years ago

ruslaniv commented 3 years ago

Description

When running cookiecutter gh:feldroy/django-crash-starter, a directory everycheese/ is created inside of the current working directory, containing all the code for the EveryCheese project. Is it possible to create all the code in the current working directory?

Rationale

I'm using PyCharm with pipenv and it already creates a project directory with the virtual environment so I do not need an extra subdirectory inside of the working directory. Screen Shot 2021-04-13 at 02 09 03

Use case(s) / visualization(s)

I'd like to do something similar to django-admin startproject project_name .

ruslaniv commented 3 years ago

It seems like I have been able to solve this problem by running: cookiecutter gh:feldroy/django-crash-starter -f -s -o /Users/ruslan/Home/projects/code/education/books/ inside of /Users/ruslan/Home/projects/code/education/books/everycheese/ I hope this works as expected. Although I'd appreciate if somebody can confirm that this was the correct way of doing it.