https://github.com/glorious-codes/glorious-taslonic-website
Taslonic's website
https://github.com/glorious-codes/glorious-taslonic-website
Last synced: 5 months ago
JSON representation
Taslonic's website
- Host: GitHub
- URL: https://github.com/glorious-codes/glorious-taslonic-website
- Owner: glorious-codes
- Created: 2020-08-22T18:00:50.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-21T00:46:06.000Z (about 2 years ago)
- Last Synced: 2025-05-16T13:09:54.195Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://taslonic.compilorama.com
- Size: 2.39 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Taslonic's Website
[](https://circleci.com/gh/glorious-codes/glorious-taslonic-website)
[](https://coveralls.io/github/glorious-codes/glorious-taslonic-website?branch=master)
## Contributing
1. Install [Node](https://nodejs.org/en/). Download the "Recommend for Most Users" version.
2. Clone the repo:
``` bash
git clone git@github.com:glorious-codes/glorious-taslonic-website.git
```
3. Go to the project directory
``` bash
cd glorious-taslonic-website
```
4. Install the project dependencies
``` bash
npm install
```
5. If you want to just build the project, run:
``` bash
npm run build
```
6. Otherwise, run:
``` bash
npm run start
```
The app will be running on `http://localhost:9000`.
## Tests
1. Ensure that all code that you have added is covered with unit tests:
``` bash
npm run test
```
2. You can optionally generate coverage report after running tests:
``` bash
npm run test -- --coverage
```