Skip to content

Commit

Permalink
Update links for discord and code of conduct (#1633)
Browse files Browse the repository at this point in the history
* Updates most discord links to the chat url on the official site

* Updates links to code of conduct and repo in contributing.md
  • Loading branch information
colinkey committed Jan 3, 2022
1 parent a12ddfb commit aa0eb3a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ contact_links:
url: https://github.com/luckyframework/lucky/discussions
about: Ask questions and discuss with other community members
- name: Chat
url: https://discord.com/invite/HeqJUcb
url: https://luckyframework.org/chat
about: Chat with the community
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Contributing to Lucky

We love pull requests from everyone. By participating in this project, you
agree to abide by the thoughtbot [code of conduct].
agree to abide by the project [code of conduct].

[code of conduct]: https://thoughtbot.com/open-source-code-of-conduct
[code of conduct]: https://github.com/luckyframework/lucky/blob/master/CODE_OF_CONDUCT.md

Here are some ways *you* can contribute:

Expand Down Expand Up @@ -41,7 +41,7 @@ already been submitted.

## Setting Up Local Environment

1. Fork it ( https://github.com/luckyframework/web/fork )
1. Fork it ( https://github.com/luckyframework/lucky/fork )
1. Create your feature branch (git checkout -b my-new-feature)
1. Install docker and docker-compose: https://docs.docker.com/compose/install/
1. Run `script/setup` to build the Docker containers with everything you need.
Expand All @@ -67,7 +67,7 @@ already been submitted.
asking for help. We love helping!
* Please don't update the Gem version.

[repo]: https://github.com/luckyframework/web/tree/master
[repo]: https://github.com/luckyframework/lucky/tree/master
[fork]: https://help.github.com/articles/fork-a-repo/
[branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/
[pr]: https://help.github.com/articles/using-pull-requests/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Lucky has a [fresh new set of guides](https://luckyframework.org/guides/) that
make it easy to get started.

Feel free to say hi or ask questions on our
[chat room](https://discord.gg/HeqJUcb).
[chat room](https://luckyframework.org/chat).

Or you can copy a real working app with [Lucky JumpStart](https://github.com/stephendolan/lucky_jumpstart/).

Expand Down
6 changes: 3 additions & 3 deletions src/lucky/welcome_page.cr
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ class Lucky::WelcomePage
tr do
td "Ask for ideas in our chatroom", class: "left-column"
td class: "right-column" do
a discord_url, href: discord_url, target: "_blank"
a chat_url, href: chat_url, target: "_blank"
end
end
end
end
end

private def discord_url
"https://discord.gg/HeqJUcb"
private def chat_url
"https://luckyframework.org/chat"
end

private def welcome_page_styles
Expand Down
2 changes: 1 addition & 1 deletion tasks/watch.cr
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ module LuckySentry
▸ Run setup: #{"script/setup".colorize.bold}
▸ Reinstall shards: #{"rm -rf lib bin && shards install".colorize.bold}
▸ Ask for help: #{"https://discord.gg/HeqJUcb".colorize.bold}
▸ Ask for help: #{"https://luckyframework.org/chat".colorize.bold}
ERROR
end
end
Expand Down

0 comments on commit aa0eb3a

Please sign in to comment.