https://github.com/millenniumambiguity/repository-profile-template
GitHub profile page template
https://github.com/millenniumambiguity/repository-profile-template
profile-template profile-website
Last synced: about 2 months ago
JSON representation
GitHub profile page template
- Host: GitHub
- URL: https://github.com/millenniumambiguity/repository-profile-template
- Owner: millennIumAMbiguity
- License: apache-2.0
- Created: 2021-05-23T12:13:34.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-19T00:02:49.000Z (2 months ago)
- Last Synced: 2025-02-19T00:29:50.906Z (2 months ago)
- Topics: profile-template, profile-website
- Language: JavaScript
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Repository Profile Template
See an example here: [millennIumAMbiguity.github.io](https://millenniumambiguity.github.io/)## Setup
Update `username` in [js/data.js](js/data.js) with your GitHub username.```javascript
export const username = "your-username";
```## Run
1. Download the repository
2. Open the terminal
3. Navigate to the repository
4. Run the following command to install `http-server` globally```sh
npm install -g http-server
```5. Start the server by running the following command in the root directory of the repository
```sh
http-server
```## Updating
If you are using this template and wish to update it with new changes in the template, you can perform the following steps.
1. run commands:
Add template repository as a remote.
```sh
git remote add template https://github.com/millennIumAMbiguity/repository-profile-template
```
Run git fetch to update the changes.
```sh
git fetch --all
```
Merge the branch from the new remote to your current one.
```sh
git merge template/main --allow-unrelated-histories
```
2. Resolve any/all conflicts.
3. Commit changes.