-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
45 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,52 @@ | ||
<p align="center"> | ||
<img width="500" src="https://i.imgur.com/coa1q5T.png" alt="logo"> | ||
</p> | ||
|
||
<p align="center"> | ||
<a href="https://www.npmjs.com/package/ulka"> | ||
<img alt="NPM" src="https://img.shields.io/npm/v/ulka?&labelColor=black&color=darkred&logo=npm&label=npm" /> | ||
</a> | ||
<a href="https://github.com/acharyaroshanji/ulka"> | ||
<img alt="MIT" src="https://img.shields.io/npm/l/ulka?color=darkgreen&labelColor=black&&logo=github" /> | ||
</a> | ||
<a href="#"><img alt="CI" src="https://github.com/ulkajs/ulka/workflows/CI/badge.svg"></a> | ||
A simpler static site generator written in JavaScript to transform ulka and markdown files to html. | ||
</p> | ||
|
||
<p align="center"> | ||
Ulka is a free and open source static site generator that helps you create static sites from markdown and ulka files. | ||
<a href="https://www.npmjs.com/package/ulka"><img alt="NPM" src="https://img.shields.io/npm/v/ulka?&labelColor=black&color=darkred&logo=npm&label=npm" /></a> | ||
<a href="https://github.com/acharyaroshanji/ulka"><img alt="MIT" src="https://img.shields.io/npm/l/ulka?color=darkgreen&labelColor=black&&logo=github" /></a> | ||
<a href="https://github.com/prettier/prettier"><img alt="Prettuer" src="https://img.shields.io/badge/code_style-prettier-ff69b4.svg?color=b3095d&labelColor=black&logo=prettier"></a> | ||
<a href="#"><img alt="CI" src="https://img.shields.io/github/workflow/status/ulkajs/ulka/CI?color=darkgreen&label=CI&logo=github&labelColor=black"></a> | ||
<a href="https://gatsbyjs.org/contributing/how-to-contribute/"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?labelColor=black&logo=github&color=darkgreen" alt="PRs welcome!" /></a> | ||
|
||
</p> | ||
<br /> | ||
|
||
## 🚀 Quick start | ||
## 🚀 Getting Started | ||
|
||
1. Create new ulka site | ||
|
||
``` | ||
```bash | ||
npx ulka create <app-name> <template_url> -i npm | ||
|
||
## OR | ||
|
||
npm i -g ulka | ||
ulka create <app-name> <template_url> -i npm | ||
``` | ||
|
||
2. Navigate to app name and start server | ||
2. Navigate to app name and start dev server | ||
``` | ||
cd <app-name> | ||
npm start | ||
npm run develop | ||
``` | ||
|
||
Complete documentation comming soon.... | ||
## 📖 Documentation | ||
|
||
Coming soon... | ||
|
||
## 🤗 Contributing | ||
|
||
We welcome you to join the development of Ulka. Please see [Contributing](https://github.com/ulkajs/ulka/blob/master/CONTRIBUTING.md) Guidelines. | ||
|
||
## LICENSE | ||
|
||
<a href="https://github.com/nuxt/nuxt.js/blob/dev/LICENSE">MIT</a> | ||
|
||
--- | ||
|
||
<a href="https://www.buymeacoffee.com/coderosh" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" width="200" alt="Buy Me A Coffee"></a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
const { generateHash, getConfigs } = require("./utils/helpers") | ||
const log = require("./utils/ulka-log") | ||
const ulkaFs = require("./utils/ulka-fs") | ||
|
||
module.exports = { | ||
generateHash, | ||
getConfigs, | ||
log | ||
log, | ||
ulkaFs | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters