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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*

.vscode
bun.lock
55 changes: 31 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,42 @@
# Website
<div align="center">
<a href="https://www.programmerzamannow.com/">
<img
src="https://scontent.fsub21-1.fna.fbcdn.net/v/t39.30808-1/307504703_465312565642673_1432312120056487708_n.png?stp=dst-png_s200x200&_nc_cat=103&ccb=1-7&_nc_sid=2d3e12&_nc_ohc=W6PS5YbHtg0Q7kNvwFiV1nt&_nc_oc=AdkEJmlUw0LLxxiCmLVIhotnGXd6f1pFDIEQKyBDc5FyYkzroU8akWpM71LExZEY5HY&_nc_zt=24&_nc_ht=scontent.fsub21-1.fna&_nc_gid=sDOjO81vZ0dAAnV7D2MNsw&oh=00_AfN6hxGVwZEP6SaZEYtp9CoUIxIlvRqTpBVqSIEpX7LVXQ&oe=6847167C"
alt="Logo"
width="100"
height="100"
/>
</a>
<h3>Welcome to the ProgrammerzamanNow Website</h3>
</div>

This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.
### 🚀 Introduction
This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator designed for fast and efficient content delivery

### Installation
### 📦 Installation
To install dependencies, run:

```sh
yarn
```
$ yarn
```

### Local Development

### 🔥 Local Development
Start a local development server and open a browser window:
```sh
yarn start
```
$ yarn start
```
Changes will be reflected live without restarting the server.

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

### Build

```
$ yarn build
### 🏗️ Build
Generate static content for production:
```sh
yarn build
```
The static files will be stored in the build directory and can be deployed using any hosting service.

This command generates static content into the `build` directory and can be served using any static contents hosting service.

### Deployment

Using SSH:

```
### 🚀 Deployment
Deploy using SSH:
```sh
GIT_USER=khannedy USE_SSH=true DEPLOYMENT_BRANCH=gh-pages yarn deploy
```

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
If hosting on GitHub Pages, this command conveniently builds and pushes to the `gh-pages` branch
Loading