Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

#2: Post edited by user avatar ArtOfCode‭ · 2022-01-04T20:31:44Z (over 2 years ago)
Wrong answer!
  • Stripe setup is handled in [`config/initializers/stripe.rb`](https://github.com/codidact/qpixel/blob/a3198da169c6ecdcce38202fb1f60a07cbcb0389/config/initializers/stripe.rb), where the Stripe API key is set based on the values saved in the Rails credentials file.
  • You _should_ be able to run `rails credentials:edit` (set the EDITOR environment variable to whatever command line editor you use first), and set `stripe_test_public` and `stripe_test_secret` to any non-empty string, and that should work as long as you're not actually running any Stripe related operations.
  • I have this error in my local environment too, and I've not been able to figure it out yet. It's somehow related to ImageMagick being built (or not) with the right image libraries, but as far as I can tell my environment has all the right libraries already...
  • As a workaround, you can just skip running these particular tests and only run the tests relating to what you're working on - this doesn't affect production.
#1: Initial revision by user avatar ArtOfCode‭ · 2022-01-04T20:29:03Z (over 2 years ago)
Stripe setup is handled in [`config/initializers/stripe.rb`](https://github.com/codidact/qpixel/blob/a3198da169c6ecdcce38202fb1f60a07cbcb0389/config/initializers/stripe.rb), where the Stripe API key is set based on the values saved in the Rails credentials file.

You _should_ be able to run `rails credentials:edit` (set the EDITOR environment variable to whatever command line editor you use first), and set `stripe_test_public` and `stripe_test_secret` to any non-empty string, and that should work as long as you're not actually running any Stripe related operations.