Getting a "something went wrong" error message when you delete your project in the webapp?
This usually happens when a large project causes the webapp to time out before the project has been deleted.
Delete the project through the command line instead with this quick guide.
Find the project ID for the "problem project" by checking the URL /pro/projects/###
Run the following commands in the console as dradispro
$ cd /opt/dradispro/dradispro/current/
$ RAILS_ENV=production bundle exec rails console
irb> Project.find( ##ID## ).destroy
irb> exit
If you are using Dradis on Docker, run instead:
$ docker exec -it app bin/rails console
irb> Project.find( ##ID## ).destroy
irb> exit
Note: make sure to sub in that project ID for ##ID## above!
Great job, you reached the end of the guide! Have you read all of them?
Loading form...
Your email is kept private. We don't do the spam thing.