-
Notifications
You must be signed in to change notification settings - Fork 2
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 #1 from ssennettau/features-jan2024
General Update for Jan2024
- Loading branch information
Showing
6 changed files
with
57 additions
and
7 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,25 @@ | ||
name: Deploy PartySmith (Dev) | ||
on: | ||
push: | ||
branches: | ||
- '!main' | ||
concurrency: | ||
group: merge-${{ github.ref }} | ||
permissions: | ||
id-token: write | ||
contents: read | ||
jobs: | ||
DeployApp: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git clone the repository | ||
uses: actions/checkout@v3 | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v3 | ||
with: | ||
role-to-assume: arn:aws:iam::672107698272:role/GitHubActionsRole | ||
role-duration-seconds: 3600 | ||
aws-region: us-east-1 | ||
- name: Deploy PartySmith with SST | ||
run: | | ||
npm i && npx sst deploy --stage dev |
2 changes: 1 addition & 1 deletion
2
.github/workflows/deploy-partysmith.yml → .github/workflows/deploy-partysmith-prod.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Deploy PartySmith | ||
name: Deploy PartySmith (Prod) | ||
on: | ||
push: | ||
branches: | ||
|
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,11 @@ | ||
<main class="flex-grow flex items-center justify-center mb-16"> | ||
<div class="bg-gray-800 p-6 rounded-lg shadow-md max-w-4xl space-y-3"> | ||
<p>PartySmith is an unofficial community project that transforms your <a href="https://partyrock.aws/" class="font-semibold text-yellow-400 hover:text-gray-500" target="_blank">AWS PartyRock</a> apps into deployable full-stack <a href="https://kit.svelte.dev/" class="font-semibold text-yellow-400 hover:text-gray-500" target="_blank">SvelteKit</a> applications.</p> | ||
|
||
<p>Users can enter the URL of a publicly published PartyRock app, select the desired settings, and PartySmith will forge an application into a ZIP archive which will be downloaded to your machine, and ready for use.</p> | ||
|
||
<p>This is designed to help build rapidly-deployable, and highly-customizable experimental apps using the Generative AI services of <a href="https://aws.amazon.com/bedrock" class="font-semibold text-yellow-400 hover:text-gray-500" target="_blank">Amazon Bedrock</a>, which are suitable for use in personal, customer-facing, or internal enterprise use cases.</p> | ||
|
||
<p>You can find out more about how PartySmith works by checking out the article on <a href="https://community.aws/content/2b40sobzGjCjWy9oUjtygY5McjU/partysmith" class="font-semibold text-yellow-400 hover:text-gray-500" target="_blank">Community.AWS</a>, or by visiting the <a href="https://github.com/ssennettau/PartySmith" class="font-semibold text-yellow-400 hover:text-gray-500" target="_blank">PartySmith GitHub Repository</a>.</p> | ||
</div> | ||
</main> |
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,4 @@ | ||
User-agent: * | ||
|
||
Disallow: /*.js | ||
Disallow: /.json |