You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

132 lines
4.3 KiB

2 years ago
# [💻 LiveTerm - build terminal styled websites in minutes!](https://liveterm.vercel.app)
2 years ago
2 years ago
Highly customizable, easy-to-use, and minimal terminal styled website template, powered by Next.js.
2 years ago
2 years ago
Building a simple website with LiveTerm only takes **minutes**, and you only need to work with **one** file: `config.json`. After you cloned this repository, simply run `yarn install && yarn dev` and start editing `config.json` to build your website!
2 years ago
2 years ago
LiveTerm can be used to build a variety of websites:
2 years ago
2 years ago
- [personal website](https://cveinnt.com)
- [browser startpage](https://livetermstart.vercel.app/)
- [project page](https://liveterm.vercel.app/)
- or maybe just a cool browser music player...be creative!
2 years ago
2 years ago
Feel free to play with the web demo above!
2 years ago
2 years ago
## 📸 Showcase
2 years ago
<p align="center">
<img src="./demo/demo.gif" width="600"><br>
2 years ago
<strong>LiveTerm with different themes</strong>
2 years ago
</p>
<p align="center">
<img src="./demo/cveinnt.png" width="600"><br>
2 years ago
<strong><a href="https://cveinnt.com" target=_blank>my personal website</a></strong>
2 years ago
</p>
2 years ago
## 🚀 Ship your LiveTerm site in less than 5 minutes
2 years ago
LiveTerm requires the `yarn` package manager. You can install `yarn` [here](https://classic.yarnpkg.com/lang/en/docs/install/).
Simply run the following commmand in your terminal:
2 years ago
```bash
sh -c "$(curl -fsSL https://raw.github.com/Cveinnt/LiveTerm/main/install/install.sh)"
2 years ago
```
This will install LiveTerm to the current directory. You can start building your website with:
2 years ago
```bash
cd LiveTerm && yarn dev
2 years ago
```
Start editing `config.json` and try saving and see the updated changes!
Alternatively, you can clone this repository to a location of your choosing
2 years ago
```bash
git clone https://github.com/Cveinnt/LiveTerm.git && cd LiveTerm
2 years ago
```
Then install dependencies and start developing there:
```bash
yarn install && yarn dev
```
2 years ago
### Docker Usage
First, clone the project and edit `config.json` to your liking. Then run the following to start the container in the background:
```shell
docker-compose up -d
```
If you **know** what you were doing, you can also try changing `Dockerfile` & `docker-compose.yml`!
Learn more about Docker [here](https://docs.docker.com/get-started/overview/ 'here').
2 years ago
## 📄 Configuration
2 years ago
### Basic Configuration
2 years ago
90% of LiveTerm's configurations are done through the `config.json` file.
2 years ago
```javascript
{
2 years ago
"readmeUrl": // create a Github README and link it here!
"title": // title of the website
2 years ago
"name": // your name, included in 'about' command
2 years ago
"ascii": // ascii art to display
2 years ago
"social": {
"github": // your handle
"linkedin": // your handle
},
"email": // your email
2 years ago
"ps1_hostname": "liveterm" // hostname in prompt
"ps1_username": "visitor", // username in prompt
2 years ago
"resume_url": "../resume.pdf", // path to your resume
2 years ago
"non_terminal_url": "W",
"colors": {
2 years ago
"light": {
...
},
"dark": {
... // you can use existing templates in themes.json or use your own!
}
2 years ago
}
}
```
Feel free to change it as you see fit!
2 years ago
### Themes
2 years ago
You can find several pre-configured themes in `themes.json`, and you can replace the colors in `config.json` with the theme color you like! The themes are based on the themes on [this website](https://glitchbone.github.io/vscode-base16-term/#/).
2 years ago
For a better preview of the themes, checkout the images in the `demo` folder.
2 years ago
### Favicons
2 years ago
Favicons are located in `public/`, along with the other files you may want to upload to your website. I used this [website](https://www.favicon-generator.org/) to generate favicons.
2 years ago
### Banner
2 years ago
You may also want to change the output of the `banner` command. To do that, simply paste your generated banner in `src/utils/bin/commands.ts`. I used this [website](https://manytools.org/hacker-tools/ascii-banner/) to generate my banner.
2 years ago
### Advanced Configuration
2 years ago
If you want to further customize your page, feel free to change the source code to your liking!
2 years ago
2 years ago
## 🌐 Deploy on Vercel
2 years ago
The easiest way to deploy a Next.js app is to use the [Vercel Platform](https://vercel.com/) from the creators of Next.js.
2 years ago
You can install `vercel` cli and follow the instruction [here](https://vercel.com/docs/concepts/deployments/overview).
You can also connect your github account to vercel and have vercel automatically deploy the github repository for you.
2 years ago
## Credit
Based on M4TT72's awesome [Terminal](https://github.com/m4tt72/terminal).