Skip to content

Commit 55727ac

Browse files
committed
Add Pnstack blog post, update README.md, add templates, and create AppPage component
1 parent e9b96df commit 55727ac

File tree

6 files changed

+71
-51
lines changed

6 files changed

+71
-51
lines changed

blog/pnstack.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Pnstack

docs/README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,20 @@
1-
# PNStack
1+
# Giới thiệu về pnstack
2+
3+
pnstack là một dự án mã nguồn mở được tạo ra với mục đích giúp khởi động một dự án một cách nhanh chóng. Chúng tôi muốn phát triển nó thành các ngăn xếp công nghệ và bạn chỉ cần ghép chúng lại để tạo ra một sản phẩm hoàn chỉnh. Chúng tôi đang tìm kiếm những người có cùng đam mê để phát triển dự án này.
4+
5+
Bạn có thể tham khảo thêm tại [pnstack](https://pnstack.com)[pnstack github](https://github.com/pnstack).
6+
7+
## Công nghệ mà chúng tôi đang hướng tới:
8+
9+
- Ngôn ngữ lập trình: `javascript`, `typescript`, `python`, `rust`, `go`...
10+
- Backend framework: `express`, `nestjs`, `django`,...
11+
- Frontend framework: `react`, `nextjs`, `svelte`, `angular`,...
12+
- Database: `mongodb`, `mysql`, `postgresql`, `redis`, `elasticsearch`,...
13+
- Cloud: `aws`, `gcp`, `azure`,...
14+
- AI: `pytorch`, `tensorflow`,...
15+
- Blockchain: `ethereum`, `solana`, `substrate`,...
16+
- Các dự án mã nguồn mở khác..
17+
18+
## Tham gia cùng chúng tôi
19+
20+
Bạn có thể tham gia slack cùng chúng tôi tại [đây](https://join.slack.com/t/pnstack/shared_invite/zt-27lkxql52-jxNY5IiGITOVCZZ27hlAcg). Rất mong được gặp bạn!

docs/templates/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Templates
2+
3+
Templates là nơi chúng mình xây dựng những template từ những công nghệ phổ biến giúp mọi người có thể bắt đầu phát triển một project nhanh hơn
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Template node typescript
2+
3+
## Getting Started
4+
Instructions for installing dependencies and running the app locally.
5+
6+
```bash
7+
npm install
8+
npm run dev
9+
```
10+
11+
## Project Structure
12+
Overview of the project files and directories.
13+
14+
```
15+
src/ - TypeScript source code
16+
dist/ - Compiled JavaScript output
17+
test/ - Unit tests
18+
```
19+
## Scripts
20+
Explanation of the main NPM scripts for development.
21+
22+
dev - Starts the app in development mode with live reloading
23+
build - Compiles TypeScript to JavaScript
24+
start - Runs the compiled app
25+
test - Runs unit tests
26+
Deployment
27+
Notes on how to deploy the app to production.
28+
29+
# Built With
30+
Node.js - JavaScript runtime
31+
TypeScript - Typed superset of JavaScript
32+
# License
33+
Overview of license used for the project.
34+
35+
# Acknowledgments
36+
Shoutouts to tutorials, libraries, and resources that were helpful.
37+
38+
Let me know if you would like me to expand or modify this suggested README. I aimed to provide a high-level overview based on the context provided.

src/pages/apps/index.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from 'react'
2+
3+
const AppPage = () => {
4+
return (
5+
<div>AppPage</div>
6+
)
7+
}
8+
9+
export default AppPage

src/pages/index.tsx

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)