Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 7 additions & 29 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,7 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
/.project
cypress/videos/
.idea

public/dark-theme.css
public/light-theme.css
/nbproject/
/.idea/*
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
*.sublime-workspace
*.sublime-project
10 changes: 7 additions & 3 deletions src/containers/apps/appDetails/deploy/Deployment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,13 @@ export default class Deployment extends ApiComponent<
{localize('apps.link_see_here', '(here)')}
</NewTabLink>
.{' '}
{localize(
'apps.deploy_cli_description_part2',
"If you're using CI/CD to run <code>caprover deploy</code> and you do not wish to use your password, you can use app-specific tokens"
{Utils.formatText(
localize(
'apps.deploy_cli_description_part2',
"If you're using CI/CD to run %s and you do not wish to use your password, you can use app-specific tokens"
),
['%s'],
[<code>caprover deploy</code>]
)}{' '}
<NewTabLink url="https://caprover.com/docs/ci-cd-integration.html#app-tokens">
{localize('apps.link_see_here', '(here)')}
Expand Down