-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Mihovil Ilakovac <[email protected]>
- Loading branch information
Showing
14 changed files
with
77 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: CI/CD Scenarios | ||
--- | ||
|
||
TODO: we'll talk about how to e2e test Wasp apps in the CI | ||
|
||
TODO: we'll talk about building the server as a Docker image in the CI |
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,11 @@ | ||
--- | ||
title: Database | ||
--- | ||
|
||
TODO: we'll explain the database in the context of deployment | ||
|
||
TODO: the only requirement from Wasp's point of view - it has to be a PostgreSQL database accessible from the server via the `DATABASE_URL` environment variable | ||
|
||
TODO: we'll talk about migrations: how are they created in development, how are they applied in production, how to debug failed migrations | ||
|
||
TODO: we'll talk about how to open the DB studio in development and production |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
web/docs/advanced/deployment/cli.md → ...docs/deployment/deployment-methods/cli.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
title: Deploying with the Wasp CLI | ||
title: Wasp CLI | ||
--- | ||
|
||
import { Required } from '@site/src/components/Tag'; | ||
|
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
web/docs/advanced/deployment/manually.md → ...ocs/deployment/deployment-methods/paas.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
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 @@ | ||
--- | ||
title: Self-Hosted | ||
--- | ||
|
||
TODO: Talk about how to setup Wasp with a plain VPS, Caprover and Coolify | ||
|
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,7 @@ | ||
--- | ||
title: Environment Variables | ||
--- | ||
|
||
TODO: we'll explain env vars in the deployment context - client vs. server env vars, all the required env vars, development vs. production env vars | ||
|
||
TODO: deduplicate with the env vars section in the project setup category |
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,9 @@ | ||
--- | ||
title: Extras | ||
--- | ||
|
||
TODO: Is Wasp production ready? What are the limitations? | ||
|
||
TODO: DDos and CDN recommendations | ||
|
||
TODO: Custom domain setup |
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 @@ | ||
--- | ||
title: Introduction | ||
--- | ||
|
||
TODO: the time to share your app with the world has come | ||
|
||
TODO: we'll take you through the process of deploying your app to the web | ||
|
||
TODO: first, you'll need to understand the structure of a Wasp app: Node.js backend, React frontend, and a PostgreSQL database. We'll explain the client app, server app and how it connects to the database. | ||
|
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