-
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
Darwish Ahmad Herati
authored
Oct 30, 2023
1 parent
c1b84ae
commit f3d7dd7
Showing
1 changed file
with
23 additions
and
11 deletions.
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,16 +1,28 @@ | ||
# clockflask | ||
|
||
Initialize a local Git repository | ||
`git init | ||
` | ||
Add all files to the staging area | ||
`git add . | ||
This is a simple clock application built using Python and Flask that displays the current time. | ||
|
||
## Prerequisites | ||
|
||
- Python 3.x | ||
- pip | ||
- flask | ||
|
||
# Installation: | ||
|
||
## Install Flask | ||
|
||
`pip install flask | ||
` | ||
Commit the files | ||
`git commit -m "Initial commit" | ||
|
||
|
||
|
||
1. Clone the repository: | ||
|
||
|
||
`git clone https://github.com/daherati/clockflask | ||
` | ||
Add the remote repository URL | ||
`git remote add origin <YOUR_REMOTE_REPOSITORY_URL> | ||
Create virtual environment: | ||
|
||
`python3 -m venv venv | ||
` | ||
Push the code to the remote repository | ||
`git push -u origin master` |