Skip to content

Commit

Permalink
update readme & demo
Browse files Browse the repository at this point in the history
  • Loading branch information
Cveinnt committed May 17, 2022
1 parent 266e835 commit 8dde59b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
Binary file modified demo/demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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]);

Expand Down

0 comments on commit 8dde59b

Please sign in to comment.