List of commits:
Subject Hash Author Date (UTC)
cleanup templates fbddd4449bc42a866f390ccd7abe7dd8c91609be mucbuc 2020-02-17 01:47:56
read local files and then templates 63df92bec7263ac94cc2ec3dd271d5bdda93f962 mucbuc 2020-02-02 02:38:13
this works 642e1f3d18d021a26dc3a99ef218fdb84bc2d6a8 mucbuc 2020-02-01 14:20:59
formatting f087cfb05ee0c84d29eb7320dc28ab40cc268d76 mucbuc 2020-02-01 14:12:58
package_header.js 23f5c8ef5003cfdbb4db567afbf186ea24826ed9 mucbuc 2020-02-01 14:05:57
cleanup 1025eb28bcc606b1d0b97edd2acacef257dac5c6 mucbuc 2020-01-31 06:40:32
runable template 290b66efa39703f16ffac5ffe108bd20d6decb35 mucbuc 2020-01-31 06:35:34
format 494bb04b8c49cbfdb4c3dfca846a52457e6476df mucbuc 2020-01-30 12:46:02
escape tick mark thingy b5e7f23201426448177782b56e1e160cf8711ab0 mucbuc 2020-01-30 12:44:47
simplify 0b5f3574f190923b6eae6331e1734fc4a68d6bb6 mucbuc 2020-01-29 07:01:59
batch process templates b38ef44adbc8af929decbebe2e064bc27e0a3340 mucbuc 2020-01-29 06:50:03
use minimist 1b30469823408bb66e30b45812ba96016c84079f mucbuc 2020-01-29 06:40:46
use description instead of objective" b0f58d1ea170055e3db94722d4cafb5da71aaaab mucbuc 2020-01-28 06:20:41
consolidate 7e829f7e8ed6a7e5f783c0b0819643575f12a466 mucbuc 2020-01-27 13:57:24
objective ba898495090457a37d56b7d6398c2951a3e7b85b mucbuc 2020-01-27 13:47:44
usage example 7b04228abbef46e4821429dcaaee7f279cc81024 mucbuc 2020-01-27 13:35:59
cleanup 444da418ea31cbead2c41ce85d5acfb468faee79 mucbuc 2020-01-27 13:17:10
reading from prjetect dir 9b8e0802d9549e52041ffadeb085dae7f2b186b1 mucbuc 2020-01-27 06:12:39
formt script f991001a06fa70aed0c656635cf5d1c22b896652 mucbuc 2020-01-27 06:07:22
format 820f8f81267baf5de99a0115ff6e79efcc361f7a mucbuc 2020-01-27 06:06:19
Commit fbddd4449bc42a866f390ccd7abe7dd8c91609be - cleanup templates
Author: mucbuc
Author date (UTC): 2020-02-17 01:47
Committer name: mucbuc
Committer date (UTC): 2020-02-17 01:47
Parent(s): 63df92bec7263ac94cc2ec3dd271d5bdda93f962
Signing key:
Tree: f9be3d68198d2715a717d78bc69fc4d23223301a
File Lines added Lines deleted
templates/package_header.js 1 1
templates/src_interface.js 1 1
File templates/package_header.js changed (mode: 100644) (index 18d7c7b..040f94c)
... ... const fs = require('fs'),
2 2 path = require('path'), path = require('path'),
3 3 package = JSON.parse(fs.readFileSync(path.join(projectPath, 'package.json'))); package = JSON.parse(fs.readFileSync(path.join(projectPath, 'package.json')));
4 4
5 template = `#${package.name}
5 template = `# ${package.name}
6 6
7 7 ${package.description} ${package.description}
8 8 `; `;
File templates/src_interface.js changed (mode: 100644) (index b3b93d0..e80f2b8)
... ... const fs = require('fs'),
2 2 path = require('path'), path = require('path'),
3 3 tbt = "```"; tbt = "```";
4 4
5 template = `# Interface
5 template = `## Interface
6 6 ${tbt} ${tbt}
7 7 ${fs.readFileSync(path.join(projectPath, "src", "interface.h"))} ${fs.readFileSync(path.join(projectPath, "src", "interface.h"))}
8 8 ${tbt} ${tbt}
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/mucbuc/doc-tool

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/mucbuc/doc-tool

Clone this repository using git:
git clone git://git.rocketgit.com/user/mucbuc/doc-tool

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main