Skip to content

Commit

Permalink
Add a list of required pieces of software for development (#47)
Browse files Browse the repository at this point in the history
* Add an initial list of required pieces of software for development

* Add PostgreSQL

* Add link to PostgreSQL

* Add redis

* Some fixes

* Remove some links to fix build
  • Loading branch information
mostmand authored Sep 5, 2024
1 parent e9a0f82 commit 8572c78
Show file tree
Hide file tree
Showing 11 changed files with 164 additions and 0 deletions.
28 changes: 28 additions & 0 deletions star-docs/engineering/05-Required Applications/01-intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# مقدمه

در فرآیند توسعه‌ی نرم‌افزار به تعدادی نرم‌افزار و سرویس‌های جانبی احتیاج است که راه‌اندازی آن‌ها به صورت
Local
می‌تواند کار توسعه‌دهنده‌ها را بسیار راحت کند. نرم‌افزارهایی که در توسعه‌ی ستاره مورد استفاده قرار می‌گیرند:

- Database
- Relational
- [PostgreSQL](./Database/Relational/PostgreSQL)
- SQLServer
- Oracle
- Columnar
- ClickHouse
- NoSQL
- Elasticsearch
- [Redis](./Database/NoSQL/Redis)

- Message Queue
- Kafka

- File and Object Storage
- OpenStack Swift
- FTP
- SFTP
- SMB (Windows Share)

- Authentication
- LDAP
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
services:
redis:
image: redis:7.4
ports:
- 6379:6379
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import CodeBlock from '@theme/CodeBlock';
import DockerCompose from '!!raw-loader!./docker-compose.yml'

# Redis

می‌توانید با استفاده از فایل
docker-compose
زیر به راحتی با استفاده از داکر
Redis
را راه‌اندازی کنید:

<CodeBlock language="yaml" title="docker-compose.yml">
{DockerCompose}
</CodeBlock>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"link": {
"type": "generated-index"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
services:
postgres:
image: postgres:16.4
ports:
- 5432:5432
environment:
- POSTGRES_PASSWORD=!@#123qwe
- POSTGRES_USER=postgres
volumes:
- ./data:/var/lib/postgresql/data
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import CodeBlock from '@theme/CodeBlock';
import DockerCompose from '!!raw-loader!./docker-compose.yml'

# پایگاه‌داده PostgreSQL

می‌توانید با استفاده از فایل
docker-compose
زیر به راحتی با استفاده از داکر پایگاه‌داده‌ی
PostgreSQL
را راه‌اندازی کنید:

<CodeBlock language="yaml" title="docker-compose.yml">
{DockerCompose}
</CodeBlock>

هم‌چنین برای اتصال به این پایگاه داده می‌توانید از
PGAdmin
استفاده کنید که هم به صورت
local
و هم به صورت داکری قابل نصب است.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"link": {
"type": "generated-index"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"link": {
"type": "generated-index"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"label": "نرم‌افزارهای مورد نیاز",
"link": {
"type": "generated-index"
}
}
65 changes: 65 additions & 0 deletions star-docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions star-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@mdx-js/react": "^3.0.1",
"clsx": "^2.1.1",
"prism-react-renderer": "^2.4.0",
"raw-loader": "^4.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
Expand Down

0 comments on commit 8572c78

Please sign in to comment.