Hello. I'm trying to recreate a project using the ...
# general
s
Hello. I'm trying to recreate a project using the same name as previously (I've barely started), but I cannot, because, when I run
pulumi new python
, it keeps saying that the project already exists:
Copy code
A project with the name `pulumi-proxmox` already exists
Running
pulumi stack rm
doesn't solve the issue. The project name is still probably stored somewhere under /root/.pulumi. How can I really start over? The documentation isn't really great in this respect.
e
try
stack ls --all
, this error should only be if there's an actual stack still using the project name. If your in interactive mode you can also just say to use the project name anyway.
s
Thanks, it's worked 🙂