Skip to content

Commit 19b1692

Browse files
Update FAQ on filesystem and application branches (#1962)
* Update FAQ on filesystem and application branches Clarified filesystem changes and application linking. * Fix sentence and H-levels --------- Co-authored-by: sushmangupta <[email protected]> Co-authored-by: Su <[email protected]>
1 parent 51208da commit 19b1692

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

products/paas/shopware/faq.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,45 +4,46 @@ nav:
44
position: 50
55
---
66

7-
## Frequently Asked Questions
7+
# Frequently Asked Questions
88

9-
### Can I roll back my deployment if I lose my git history?
9+
## Can I roll back my deployment if I lose my git history?
1010

1111
For now, no rollback is possible when you do a force push and lose your git history
1212

13-
### Is it possible to write to the local filesystem?
13+
## Is it possible to write to the local filesystem?
1414

1515
No, all containers are stateless, and local file writes are discouraged. Persistent storage must use S3 buckets or other external storage solutions.
16+
Changes to the filesystem and Shopware code must be made directly in the Git repository.
1617

17-
### How can I connect my already deployed application to a new branch?
18+
## How can I connect my already deployed application to a new branch?
1819

1920
The application that you create is linked to a commit SHA and not to a branch. You can change the existing application commit SHA by running `sw-paas application update`. What matters is the commit configured for a given application.
2021

21-
### Can I run different applications like Node.js?
22+
## Can I run different applications like Node.js?
2223

2324
No, currently PaaS is limited to Shopware projects.
2425

25-
### How are secrets managed in PaaS?
26+
## How are secrets managed in PaaS?
2627

2728
Secrets are stored in the PaaS secret store and can be applied at the organization, project, or application level. They are encrypted in the database and decrypted only when accessed via the CLI.
2829

29-
### Can I access the database directly?
30+
## Can I access the database directly?
3031

3132
Yes. Follow the guide on [databases](./resources/databases.md).
3233

33-
### Can I customize the infrastructure (e.g., change web server configurations)?
34+
## Can I customize the infrastructure (e.g., change web server configurations)?
3435

3536
No, the infrastructure is opinionated and pre-configured. Customizations at the server level are not allowed.
3637

37-
### Are CDN or database configurations customizable?
38+
## Are CDN or database configurations customizable?
3839

3940
No, PaaS uses Fastly as the CDN and provides a fixed database configuration at the moment. Customizations to these resources are currently under development.
4041

41-
### Can I host my custom applications?
42+
## Can I host my custom applications?
4243

4344
Custom applications and decoupled storefront hosting will be evaluated based on customer needs but are not currently supported.
4445

45-
### What is the difference between `exec` and `command` ?
46+
## What is the difference between `exec` and `command` ?
4647

4748
1. **Container Management**:
4849

@@ -58,10 +59,10 @@ Custom applications and decoupled storefront hosting will be evaluated based on
5859
- `exec`: Best for debugging, maintenance, and interactive work
5960
- `command`: Best for automation, CI/CD, and scheduled tasks
6061

61-
### Can I connect to my PaaS instance via SSH
62+
## Can I connect to my PaaS instance via SSH
6263

6364
Yes, you can connect to your PaaS instance — but not via traditional SSH. Instead, we provide a remote terminal session through the `sw-paas exec` CLI command. This command allows you to execute shell commands inside your PaaS environment remotely, effectively giving you SSH-like access for troubleshooting, deployments, or interactive sessions.
6465

65-
### Where can I see the status of my PaaS application update?
66+
## Where can I see the status of my PaaS application update?
6667

6768
You can see the status of your PaaS application by running `sw-paas application list`. This command shows the current status of your application, including whether the update was successful or if it's still in progress. To monitor all real-time events associated with the project and its applications run `sw-paas watch` this provides a live stream of events and is especially useful for tracking the progress of an ongoing update.

0 commit comments

Comments
 (0)