https://github.com/maximedgr/terminal-portfolio
Terminal Styled Website
https://github.com/maximedgr/terminal-portfolio
Last synced: about 1 month ago
JSON representation
Terminal Styled Website
- Host: GitHub
- URL: https://github.com/maximedgr/terminal-portfolio
- Owner: maximedgr
- License: mit
- Created: 2023-12-18T11:47:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-13T08:16:24.000Z (11 months ago)
- Last Synced: 2025-02-16T07:16:46.703Z (3 months ago)
- Language: TypeScript
- Homepage: https://terminal-portfolio-theta.vercel.app
- Size: 1.52 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [WebShell | Terminal Portfolio Website](https://www.krkmu.dev/)
> Forked from [https://github.com/nasan016/webshell](https://github.com/nasan016/webshell)
> All credit goes to [Nasan016](https://github.com/nasan016)❤️




## Features
* **[Tab]** for auto completion.
* **[Esc]** to clear the input line.
* **[↑][↓]** to scroll through your command history.## Configuration
Most of the configuration is done in the `config.json` file.
```json
{
"ascii": [
"██████╗ ██╗ ██╗ ██████╗",
"██╔══██╗██║ ██║██╔════╝",
"██║ ██║██║ ██║██║ ███╗",
"██║ ██║██║ ██║██║ ██║",
"██████╔╝╚██████╔╝╚██████╔╝",
"╚═════╝ ╚═════╝ ╚═════╝",
],
"repoLink": "https://github.com/nasan016/webshell",
"social": {
"email": "[email protected]",
"github": "dugfromup",
"linkedin": "dugthedog"
},
"aboutGreeting": "My name is Dug. I have just met you.",
"projects": [
[
"Project Name",
"Project Description",
"Project Link"
],
[
"Another Project Name",
"Another Project Description",
"Another Project Link"
]
],
"articles": [
["Title", "Description", "link"],
]
,
"hackathons": [
["Title", "Description", "link"],
]
}
```## Run the Project Locally:
Clone the repository
```shell
git clone https://github.com/nasan016/webshell.git
```
Go to the project directory
```shell
cd webshell
```
Install the dependencies
```shell
npm install
```
Start the server
```shell
npm run dev
```