Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions dev/barizi211-dev/application.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 💻 Barizi M - Application

- **Name**: Barizi M
- **Discord**: Barizi.Xth
- **GitHub**: [https://github.com/barizi211](https://github.com/barizi211)
- **Languages**: English and Indonesian
- **Experience**: Jatevo AI
- **AI Tools**: Sonet, GPT
- **Why Join?**: I am interested in every single AI project.


7 changes: 6 additions & 1 deletion dist/applications/DEV-APPLICATION.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
// src/📁 applications/DEV-APPLICATION.ts
import fs from "fs";
import path from "path";
import { devRegistry } from "../main";
const devApplications = [];
console.log("🚀 Application loaded");
const devRegistry = [
{
name: "Barizi M",
folder: "barizi211-dev",
}
];
devRegistry.forEach((dev) => {
const mdPath = path.resolve(process.cwd(), "dev", dev.folder, "application.md");
try {
Expand Down
9 changes: 8 additions & 1 deletion src/applications/DEV-APPLICATION.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import fs from "fs";
import path from "path";
import { devRegistry } from "../main";



type DevInfo = {
Expand All @@ -13,6 +13,13 @@ type DevInfo = {
const devApplications: { name: string; content: string }[] = [];

console.log("🚀 Application loaded");
const devRegistry: DevInfo[] = [
{
name: "Barizi M",
folder: "barizi211-dev",
}
];


devRegistry.forEach((dev: DevInfo) => {

Expand Down
Loading