Finding where to start contributing to Nimbus #23
Pinned
IonianPlayboy
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How to check the files that need to be updated
There is a lot of files in Nimbus that still mention Elk or Mastodon. Checking them out can be a good way to look for a place you can contribute to.
Running
grep
Note
grep
is a command-line utility for searching plaintext datasets for lines that match a regular expression. (from Wikipedia)It is available on Linux and MacOS, but not on Windows as far as I know. If you want an equivalent, I think you should be able to do something similar with findstr.
Using
grep
in Nimbus's root folder, we can look for all mentions of "elk" and "masto" to see what files need to be updated.For "elk" mentions
For "masto" mentions
Output
Here is an example of the output of the
grep
command looking for "elk" mentions, reduced to only two files for brevity:What we can learn from reading this log :
netlify.toml
mentions "elk" oncehttps://chat.nimbus.town
without too much troubleservice-worker/notification.ts
mentions "elk" twice, once on line 2, and the other on line 5../utils/elk-idb
, which looks like some kind of logic that is deeply coupled with Elk/Mastodon=> I can make a quick PR to update
netlify.toml
to help out.Note
There is an issue that has listed all the files that need to be updated : #6
Keep in mind that it is not guaranteed to be up to date.
Beta Was this translation helpful? Give feedback.
All reactions