My personal blog developed using Gatsby and TypeScript.
Use the following link to reach the blog: anasdidi.dev
This project is developed and deployed using Node 18. To change the Node version, change the following files:
This project configured with Docker Compose to setup the development environment by using VSCode Devcontainer.
Ensure VSCode plugin 'Remote Development' ms-vscode-remote.vscode-remote-extensionpack
is installed.
yarn install
yarn start
http://localhost:8000
to view the page.If Docker Compose is not installed, you may use the following guide. This guide required Node is installed in the machine.
yarn install
# Or if yarn is not installed
npm install
# package.json
--- Original
"develop": "gatsby develop --host 0.0.0.0 --port 8000",
--- Replace
"develop": "gatsby develop --port 8000",
yarn start
# Or if yarn is not installed
npm start
http://localhost:8000
to view the page.Created by Anas Juwaidi