https://github.com/mcous/ranj-chak-dot-com
Ranjani Chakraborty's personal website
https://github.com/mcous/ranj-chak-dot-com
Last synced: 3 months ago
JSON representation
Ranjani Chakraborty's personal website
- Host: GitHub
- URL: https://github.com/mcous/ranj-chak-dot-com
- Owner: mcous
- License: other
- Created: 2016-02-03T05:08:13.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-09-18T00:09:43.000Z (over 1 year ago)
- Last Synced: 2025-10-30T18:51:19.077Z (7 months ago)
- Language: TypeScript
- Homepage: https://ranjchak.com
- Size: 122 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ranj chak dot com
Personal website for Ranjani Chakraborty at https://ranjchak.com.
## development
ranjchak.com is a static page hosted on GitHub pages. It uses [nodejs](http://nodejs.org) as its build runtime and [npm](http://npmjs.org) as its package manager. Make sure you have Node >= v8 installed, and then:
1. `git clone https://github.com/mcous/ranj-chak-dot-com.git`
2. `npm install`
3. `npm start`
A dev server will now be running at to show you what the page will look like.
### building
To build for production, the following scripts are used
- `npm run build` - Builds production HTML, JS, and CSS
- `npm run serve` - Runs a server at with the production assets
### developing
There are several important development scripts:
- `npm start` - Start the dev server at
- `npm run format` - Autoformats JavaScript, TypeScript, YAML, and Markdown
- `npm run lint` - Lints TypeScript and CSS
- `npm run check` - Type checks TypeScript
### deploying
To deploy the site, run
- `npm release`
The version will be bumped, a change log will be generated, and the `dist` folder will be built and deployed to the `gh-pages` branch.