1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 21:46:22 +01:00
Files
openshift-docs/modules/developer-cli-odo-creating-a-project.adoc
Yana Hontyk 1231f9160c Restructuing odo docs.
Co-Authored-By: Kathryn Alexander <37149781+kalexand-rh@users.noreply.github.com>
2020-11-05 08:24:01 +00:00

35 lines
1.0 KiB
Plaintext

// Module included in the following assemblies:
//
// * cli_reference/developer_cli_odo/creating_and_deploying_applications_with_odo/creating-a-single-component-application-with-odo.adoc
// * cli_reference/developer_cli_odo/creating_and_deploying_applications_with_odo/creating-a-multicomponent-application-with-odo.adoc
// * cli_reference/developer_cli_odo/creating_and_deploying_applications_with_odo/creating-an-application-with-a-database.adoc
// * cli_reference/developer_cli_odo/creating_and_deploying_applications_with_odo/working-with-projects
[id="creating-a-project_{context}"]
= Creating a project
Create a project to keep your source code, tests, and libraries organized in a separate single unit.
.Procedure
. Log in to an {product-title} cluster:
+
[source,terminal]
----
$ odo login -u developer -p developer
----
. Create a project:
+
[source,terminal]
----
$ odo project create myproject
----
+
.Example output
[source,terminal]
----
✓ Project 'myproject' is ready for use
✓ New project created and now using project : myproject
----