-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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 #220 from cristim67/master
Add Deploy to Genezio Button
- Loading branch information
Showing
2 changed files
with
23 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
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,18 @@ | ||
# The name of the project. | ||
name: material-kit | ||
# The region where the project is deployed. | ||
region: us-east-1 | ||
# The version of the Genezio YAML configuration to parse. | ||
yamlVersion: 2 | ||
# Information about the frontend, including the path, language, and publish directory. | ||
# It is optional. It can also be an array if there are multiple frontends you want to deploy. | ||
frontend: | ||
# The folder where the frontend scripts will run. | ||
path: ./ | ||
# The directory that will be published to the CDN. It is relative to the path. | ||
publish: ./ | ||
scripts: | ||
# List of scripts that build your frontend before deployment. It should populate the specified `publish` directory. | ||
build: npm install | ||
# List of scripts to run before deploying the frontend. | ||
deploy: npm install |