Skip to content

barisaksu/terminal

Repository files navigation

Quick Start

https://github.com/m4tt72/terminal

Using docker (recommended)

docker run -d --name terminal -p 3000:3000 barisaksu/terminal

If you want to run with custom configuration, make sure you have a copy of config.json then mount in the container:

docker run -d \
  --name terminal \
  -p 3000:3000 \
  -v `pwd`/config.json:/data/config.json \
  barisaksu/terminal

Using npm/yarn

  1. Install dependencies:
yarn install
  1. Build the project:
yarn build
  1. Run the server:
yarn start

Configuration

Here's a sample of the config.json file:

{
  "bioUrl": "https://raw.githubusercontent.com/barisaksu/barisaksu/master/README.md",
  "social": {
    "instagram": "barissaksu",
    "github": "barisaksu",
    "linkedin": "barisaksu"
  },
  "theme": "gruvboxdark" // list of themes available in themes.json
}

Themes

themes

Here's a list of available themes.

Contributing

Please feel free to pull requests or log issues.

Thanks!