A terminal style website
TL;DR: why not?
I'm a Linux enthusiast, and I tried creating something that will allow 'normal' people to have a glimpse at my world.
docker run -d --name terminal -p 3000:3000 m4tt72/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 \
m4tt72/terminal
- Install dependencies:
yarn install
- Build the project:
yarn build
- Run the server:
yarn start
Here's a sample of the config.json
file:
{
"bioUrl": "https://raw.githubusercontent.com/m4tt72/m4tt72/master/README.md",
"social": {
"instagram": "m4tt72",
"github": "m4tt72",
"linkedin": "yassinefathi"
},
"theme": "gruvboxdark" // list of themes available in themes.json
}
Here's a list of available themes.
Please feel free to pull requests or log issues.
Thanks!