Skip to content

Commit 303bd91

Browse files
authored
Merge pull request #217 from KnapsackPro/fix-outgoing-links
Fix broken 404 outgoing links
2 parents 21341fe + a8ede9f commit 303bd91

File tree

5 files changed

+6
-16
lines changed

5 files changed

+6
-16
lines changed

_posts/2019-03-16-run-parallel-jobs-on-semaphore-ci-2-0-to-get-faster-ci-build-time.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Here you can find Semaphore CI 2.0 config for projects using:
3131

3232
`knapsack_pro` gem supports environment variables provided by Semaphore CI 2.0 to run your tests. You will have to define a few things in `.semaphore/semaphore.yml` config file.
3333

34-
- You need to set `KNAPSACK_PRO_TEST_SUITE_TOKEN_RSPEC`. If you don't want to commit secrets in yml file then you can <a href="https://docs.semaphoreci.com/article/66-environment-variables-and-secrets" target="_blank" rel="nofollow">follow this guide</a>.
34+
- You need to set `KNAPSACK_PRO_TEST_SUITE_TOKEN_RSPEC`. If you don't want to commit secrets in yml file then you can <a href="https://docs.semaphoreci.com/using-semaphore/secrets" target="_blank" rel="nofollow">follow this guide</a>.
3535
- You should create as many parallel jobs as you need with `parallelism` property. If your test suite is long you should use more parallel jobs.
3636

3737
Below you can find full Semaphore CI 2.0 config for Rails project.
@@ -135,7 +135,7 @@ blocks:
135135

136136
`@knapsack-pro/cypress` supports environment variables provided by Semaphore CI 2.0 to run your tests. You will have to define a few things in `.semaphore/semaphore.yml` config file.
137137

138-
- You need to set `KNAPSACK_PRO_TEST_SUITE_TOKEN_CYPRESS`. If you don't want to commit secrets in yml file then you can <a href="https://docs.semaphoreci.com/article/66-environment-variables-and-secrets" target="_blank" rel="nofollow">follow this guide</a>.
138+
- You need to set `KNAPSACK_PRO_TEST_SUITE_TOKEN_CYPRESS`. If you don't want to commit secrets in yml file then you can <a href="https://docs.semaphoreci.com/using-semaphore/secrets" target="_blank" rel="nofollow">follow this guide</a>.
139139
- You should create as many parallel jobs as you need with `parallelism` property. If your test suite is long you should use more parallel jobs.
140140

141141
Below you can find example part of Semaphore CI 2.0 config.
@@ -164,7 +164,7 @@ blocks:
164164

165165
`@knapsack-pro/jest` supports environment variables provided by Semaphore CI 2.0 to run your tests. You will have to define a few things in `.semaphore/semaphore.yml` config file.
166166

167-
- You need to set `KNAPSACK_PRO_TEST_SUITE_TOKEN_JEST`. If you don't want to commit secrets in yml file then you can <a href="https://docs.semaphoreci.com/article/66-environment-variables-and-secrets" target="_blank" rel="nofollow">follow this guide</a>.
167+
- You need to set `KNAPSACK_PRO_TEST_SUITE_TOKEN_JEST`. If you don't want to commit secrets in yml file then you can <a href="https://docs.semaphoreci.com/using-semaphore/secrets" target="_blank" rel="nofollow">follow this guide</a>.
168168
- You should create as many parallel jobs as you need with `parallelism` property. If your test suite is long you should use more parallel jobs.
169169

170170
Below you can find example part of Semaphore CI 2.0 config.

_posts/2021-02-25-best-heroku-add-ons-for-ruby-on-rails-project.md

-10
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,6 @@ Rollbar.configure do |config|
7474
end
7575
{% endhighlight %}
7676

77-
### Logentries
78-
79-
[Logentries](https://elements.heroku.com/addons/logentries) - collects your logs from Heroku standard output so that you can browse them later on. If you need to find info about an issue that happened a few days ago in your logs then Logentries might be helpful.
80-
81-
Of course, you could use [Heroku Command Line Interface](https://devcenter.heroku.com/articles/heroku-cli) and run `heroku logs -n 10000 --app my-heroku-app` command in terminal to browse logs for the last 10,000 lines but this method has limitations. You can't go that much in past logs or easily filter logs as in Logentries.
82-
83-
Logentries has a 5 GB and 7 days retention period in a free plan. This is enough for small Rails apps.
84-
85-
A nice feature I like in Logentries is an option to save the query and later on quickly browse logs by it. You can also display charts based on logs. Maybe you want to see how often a particular worker in Sidekiq has been called? You could visualize it.
86-
8777
### Redis Cloud
8878

8979
If you use Redis in your Ruby on Rails app then [Redis Cloud](https://elements.heroku.com/addons/rediscloud) is your add-on. It has a free plan and paid plans are more affordable than other add-ons have.

docusaurus/docs/cypress/guide/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ blocks:
655655
# highlight-end
656656
```
657657

658-
Remember to set up `KNAPSACK_PRO_TEST_SUITE_TOKEN_CYPRESS` as a [secret](https://docs.semaphoreci.com/article/66-environment-variables-and-secrets).
658+
Remember to set up `KNAPSACK_PRO_TEST_SUITE_TOKEN_CYPRESS` as a [secret](https://docs.semaphoreci.com/using-semaphore/secrets).
659659

660660
</ShowIfSearchParamAndValue>
661661

docusaurus/docs/jest/guide/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ blocks:
648648
# highlight-end
649649
```
650650

651-
Remember to set up `KNAPSACK_PRO_TEST_SUITE_TOKEN_JEST` as a [secret](https://docs.semaphoreci.com/article/66-environment-variables-and-secrets).
651+
Remember to set up `KNAPSACK_PRO_TEST_SUITE_TOKEN_JEST` as a [secret](https://docs.semaphoreci.com/using-semaphore/secrets).
652652

653653
</ShowIfSearchParamAndValue>
654654

docusaurus/docs/knapsack_pro-ruby/guide/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -970,7 +970,7 @@ blocks:
970970
# highlight-end
971971
```
972972

973-
Remember to set up `KNAPSACK_PRO_TEST_SUITE_TOKEN_*` as a [secret](https://docs.semaphoreci.com/article/66-environment-variables-and-secrets).
973+
Remember to set up `KNAPSACK_PRO_TEST_SUITE_TOKEN_*` as a [secret](https://docs.semaphoreci.com/using-semaphore/secrets).
974974

975975
</ShowIfSearchParamAndValue>
976976

0 commit comments

Comments
 (0)