-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from front-commerce/theme-offline-maintenance
Add a wip page telling about Offline/Maintenance page - #63
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
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
16 changes: 16 additions & 0 deletions
16
source/docs/advanced/production-ready/checklist-before-production.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,16 @@ | ||
--- | ||
id: checklist-before-production | ||
title: Before going to production | ||
wip: https://github.com/front-commerce/developers.front-commerce.com/issues/63 | ||
--- | ||
|
||
Before going to production, you want to ensure that everything is in place. But some features are not critical enough to block your developments and you may have missed them. These are still a big part of any Front-Commerce application. | ||
|
||
To ensure that you are good to go, you can go through this checklist : | ||
|
||
* [ ] Style your **Offline page** | ||
This page is accessible when you disable your network while navigating in your shop. | ||
If you have `FRONT_COMMERCE_ENV !== "production"` this page will also be available at `/__front-commerce/offline`. You can then edit the `theme/pages/Offline` component to make sure that this page suits your brand. | ||
* [ ] Style your **Maintenance page** | ||
This page is accessible when your backend returns is in Maintenance mode (503). | ||
If you have `FRONT_COMMERCE_ENV !== "production"` this page will also be available at `/__front-commerce/maintenance`. You can then edit the `theme/pages/Maintenance` component to make sure that this page suits your brand. |