social.coop is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Fediverse instance for people interested in cooperative and collective projects. If you are interested in joining our community, please apply at https://join.social.coop/registration-form.html.

Administered by:

Server stats:

492
active users

#rubyonrails

7 posts6 participants0 posts today

How to Host Your Own #Mastodon Server on a #VPS (5 Minute Quick-Start Guide)

This article provides a guide for how to host your own Mastodon server on a VPS.

Running your own Mastodon server on a VPS is an excellent way to enjoy an efficient and secure Mastodon experience.
What is Mastodon?
Mastodon is a #decentralized social media platform that enables users to post ...
Continued 👉 blog.radwebhosting.com/how-to- #installguide #selfhosting #rubyonrails #selfhosted #rubygems #activitypub

How to Host Your Own Mastodon Server on a VPS
RadWeb, LLC · How To Host Your Own Mastodon Server On A VPS (5 Minute Quick-Start Guide) - VPS Hosting Blog | Dedicated Servers | Reseller HostingThis article provides a guide for how to host your own Mastodon server on a VPS.

I have no patience for dealing with the #RubyOnRails core team, but if •you• do, then…

It would be super if it were possible to append values to the #ContentSecurityPolicy configuration. For example:

```ruby
Rails.application.configure do
config.content_security_policy do |policy|
policy.script_src :self, :https

if Rails.env.development?
policy.script_src << :unsafe_inline
end
end
end
```

Template initializer source: github.com/rails/rails/blob/ma

In a #RubyOnRails app, how would you handle a model attribute that’s nil by default and can be updated once and only once (from nil to some value) after the record is persisted?

attr_readonly is similar-but-different and I can’t find a common pattern for handling a case like this.