Skip to content
Merged
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
15 changes: 15 additions & 0 deletions _data/home-content.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@
- title: Concepts in Codefresh
localurl: /docs/getting-started/concepts/


- title: Quick starts
icon: images/home-icons/started.svg
url: ''
links:
- title: Create Codefresh account
localurl: /docs/quick-start/create-codefresh-account/
- title: CI pipeline quick start
localurl: /docs/quick-start/ci-quickstart/create-ci-pipeline/
- title: Kubernetes deployment quick start
localurl: /docs/quick-start/ci-quickstart/deploy-to-kubernetes/
- title: Helm quick start
localurl: /docs/quick-start/ci-quickstart/deploy-with-helm/

- title: Pipeline integrations
icon: images/home-icons/cloud-integrations.png
links:
Expand Down Expand Up @@ -72,6 +86,7 @@
- title: Quay Registry for GitOps
localurl: /docs/gitops-integrations/container-registries/quay/


- title: Dashboards & insights
icon: images/home-icons/guides.png
url: ''
Expand Down
15 changes: 14 additions & 1 deletion _data/nav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,20 @@
- title: Concepts in Codefresh
url: "/concepts"


- title: Quick starts
url: "/quick-start"
pages:
- title: Create Codefresh account
url: "/create-codefresh-account"
- title: CI/CD quick starts
url: "/ci-quickstart"
sub-pages:
- title: CI pipeline quick start
url: "/create-ci-pipeline"
- title: Kubernetes deployment quick start
url: "/deploy-to-kubernetes"
- title: Helm quick start
localurl: "/deploy-to-helm"


- title: Dashboards & Insights
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@ title: "Create a Codefresh account"
description: "Welcome to Codefresh!"
group: administration
sub_group: account-user-management
redirect_from:
- /docs/
- /docs/create-an-account/
- /docs/getting-started/
- /docs/getting-started/introduction/
toc: true
---
Before you can do anything in Codefresh such as building and deploying your applications, you need to create a Codefresh account.

Expand All @@ -23,7 +19,7 @@ max-width="90%"
%}

## Step 1: Select your Identity Provider
As the first step in setting up ypur account in Codefresh, select the identity provider (IdP) to use.
As the first step in setting up your account in Codefresh, select the identity provider (IdP) to use.
Codefresh currently supports the following IdPs:
* GitHub
* Bitbucket
Expand All @@ -37,7 +33,7 @@ If you need an IdP that is not in the list, please [contact us](https://codefres
>NOTES:
For Git repositories, the login method is less important, as you can Git repositories through [Git integrations]({{site.baseurl}}/docs/integrations/git-providers/), regardless of your sign-up process.

If you multiple sign-up methods, as long as you use the same email address in all the sign-ups, Codefresh automatically redirects you to the account dashboard.
If you have multiple sign-up methods, as long as you use the same email address in all the sign-ups, Codefresh automatically redirects you to the account dashboard.

1. Go to the [Codefresh Sign Up page](https://g.codefresh.io/signup). <!---need to change the URL and the screenshot-->

Expand Down
45 changes: 45 additions & 0 deletions _docs/quick-start/ci-quick-start.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
title: "Create a project for pipeline"
description: ""
group: quick-start
toc: true
---

Codefresh pipelines are grouped under projects. Think of a project as a folder or directory that groups related pipelines. For example, all pipleines that package/deploy the different microservices for an application.
You can define any name for the project, the most common example being the name of the application that the pipelines

### Where are you



### Before you beigin

* [Connect a Docker registry to Codefresh]({{site.baseurl}}/docs/quick-start/create-docker-registry-integration)

### How to
1. In the Codefresh UI, in the sidebar, from Pipelines, select **Projects**.
1. On the top-right, click **New Project**.
1. Enter the **Project Name**. For example, `my-first-project`.
1. Leave the **Project Tags** empty for the quick start.
1. Select any **Icon** you want. The icon is prefixed to the project name in the Projects page.
1. Click **Create**.

{% include image.html
lightbox="true"
file="/images/quick-start/quick-start-ci/create-ci-project.png"
url="/images/quick-start/quick-start-ci/create-ci-project.png"
alt="Create project for pipeline"
caption="Create project for pipeline"
max-width="70%"
%}

You now have a new project and can create your first pipeline.


### Continue with






Loading