-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
810c624
commit 2bd0437
Showing
1 changed file
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,26 @@ | ||
# technology-innovations | ||
|
||
## Create a new repository on GitHub | ||
|
||
`git clone https://github.com/<repository_uri>` | ||
`cd <repository>` | ||
|
||
|
||
## Creating the Virtual Environment | ||
|
||
`python -m venv venv` | ||
`python -m venv venv` | ||
`source venv/bin/activate` | ||
`pip --version` | ||
`pip install mkdocs-material` | ||
|
||
## Open in VS Code | ||
`.code` | ||
|
||
## new mkdocs website | ||
|
||
`mkdocs new .` | ||
`mkdocs serve` | ||
|
||
This should create the mkdocs.yml and docs folder to start with. | ||
|
||
|