update readme & demo

pull/6/head
Cveinnt 2 years ago
parent 266e835f43
commit 8dde59ba08

@ -16,13 +16,13 @@ Feel free to play with the web demo above!
## 📸 Showcase
<p align="center">
<img src="./demo/demo.gif" width="400"><br>
<img src="./demo/demo.gif" width="600"><br>
<strong>LiveTerm with different themes</strong>
</p>
<p align="center">
<img src="./demo/cveinnt.png" width="800"><br>
<strong>my personal website</strong>
<img src="./demo/cveinnt.png" width="600"><br>
<strong><a href="https://cveinnt.com" target=_blank>my personal website</strong>
</p>
## 🚀 Ship your LiveTerm site in less than 5 minutes
@ -56,15 +56,15 @@ yarn install && yarn dev
```
### Docker Usage
- Clone the project.
- Edit `config.json`.
- Run the following to start the service (from within the project dir):
````shell
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
````
```
You can also try changing `Dockerfile` & `docker-compose.yml` ONLY IF YOU KNOW WHAT YOU ARE DOING!
Learn about Docker [here](https://docs.docker.com/get-started/overview/ "here").
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').
## 📄 Configuration

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 2.0 MiB

@ -31,7 +31,7 @@ const IndexPage: React.FC<IndexPageProps> = ({ inputRef }) => {
React.useEffect(() => {
if (inputRef.current) {
inputRef.current.scrollIntoView();
inputRef.current.focus({preventScroll: true});
inputRef.current.focus({ preventScroll: true });
}
}, [history]);

Loading…
Cancel
Save