-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a list of required pieces of software for development (#47)
* 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
Showing
11 changed files
with
164 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
star-docs/engineering/05-Required Applications/01-intro.md
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 |
---|---|---|
@@ -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 |
5 changes: 5 additions & 0 deletions
5
star-docs/engineering/05-Required Applications/Database/NoSQL/Redis/docker-compose.yml
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
services: | ||
redis: | ||
image: redis:7.4 | ||
ports: | ||
- 6379:6379 |
14 changes: 14 additions & 0 deletions
14
star-docs/engineering/05-Required Applications/Database/NoSQL/Redis/redis.mdx
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 |
---|---|---|
@@ -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> |
5 changes: 5 additions & 0 deletions
5
star-docs/engineering/05-Required Applications/Database/NoSQL/_category_.json
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"link": { | ||
"type": "generated-index" | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...cs/engineering/05-Required Applications/Database/Relational/PostgreSQL/docker-compose.yml
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 |
---|---|---|
@@ -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 |
20 changes: 20 additions & 0 deletions
20
...ineering/05-Required Applications/Database/Relational/PostgreSQL/postgresql.mdx
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 |
---|---|---|
@@ -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 | ||
و هم به صورت داکری قابل نصب است. |
5 changes: 5 additions & 0 deletions
5
star-docs/engineering/05-Required Applications/Database/Relational/_category_.json
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"link": { | ||
"type": "generated-index" | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
star-docs/engineering/05-Required Applications/Database/_category_.json
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"link": { | ||
"type": "generated-index" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
star-docs/engineering/05-Required Applications/_category_.json
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"label": "نرمافزارهای مورد نیاز", | ||
"link": { | ||
"type": "generated-index" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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