-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create backend and frontend code locally to do amplify manual CI/CD with GHES repo #919
Comments
Hi Team, |
Hi Team |
1 similar comment
Hi Team |
Hey @sesa575445 , Thanks for raising this. We would like to do a deepdive into the issue, can you please your availability for share? |
Hi 👋 @AnilMaktala |
Hi 👋 @AnilMaktala <https://github.com/AnilMaktala>
Thanks for responding finally 🙏 Yes I am available in the India Timezone
from 11 AM till 7 PM as I am based in Bangalore.
Please let me know so that we can meet up on a call today at 6 PM or 7 PM.
Cheers,
Sriram
…On Thu, Jan 9, 2025 at 1:31 AM Anil Maktala ***@***.***> wrote:
Hey @sesa575445 <https://github.com/sesa575445> , Thanks for raising
this. We would like to do a deepdive into the issue, can you please your
availability for share?
—
Reply to this email directly, view it on GitHub
<#919 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BGQWZFZMKVNJV3HZH2T27JL2JV7ZNAVCNFSM6AAAAABT4YU6V2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKNZYGUZDOMRRGI>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Hi 👋 @AnilMaktala <https://github.com/AnilMaktala>
We can meet and I will share my expectations on Monday 13th Jan IST 7 PM.
Thanks,
Sriram
On Fri, Jan 10, 2025 at 12:33 PM sriram perumalla ***@***.***>
wrote:
… Hi 👋 @AnilMaktala <https://github.com/AnilMaktala>
Thanks for responding finally 🙏 Yes I am available in the India Timezone
from 11 AM till 7 PM as I am based in Bangalore.
Please let me know so that we can meet up on a call today at 6 PM or 7 PM.
Cheers,
Sriram
On Thu, Jan 9, 2025 at 1:31 AM Anil Maktala ***@***.***>
wrote:
> Hey @sesa575445 <https://github.com/sesa575445> , Thanks for raising
> this. We would like to do a deepdive into the issue, can you please your
> availability for share?
>
> —
> Reply to this email directly, view it on GitHub
> <#919 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/BGQWZFZMKVNJV3HZH2T27JL2JV7ZNAVCNFSM6AAAAABT4YU6V2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKNZYGUZDOMRRGI>
> .
> You are receiving this because you were mentioned.Message ID:
> ***@***.***>
>
|
Hey @sesa575445, Are you on Discord by any chance? If so, could you please share your Discord username with me? |
Hi @AnilMaktala Unfortunately, our office doesn't allow Discord app in our engineering laptops. I can setup a Teams meeting with our Outlook Teams based on your availability this week. |
Hi Anil,
Unfortunately, our office doesn't allow Discord app in our engineering
laptops. I can setup a Teams meeting with our Outlook Teams based on your
availability this week.
Thanks,
Sriram
…On Sat, Jan 11, 2025 at 2:15 AM Anil Maktala ***@***.***> wrote:
Hey @sesa575445 <https://github.com/sesa575445>, Are you on Discord by
any chance? If so, could you please share your Discord
<https://discord.com/invite/amplify> username with me?
—
Reply to this email directly, view it on GitHub
<#919 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BGQWZF7BZFAPQIGXMKQ7EXD2KAWPVAVCNFSM6AAAAABT4YU6V2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKOBUGEYDGMJRHA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Hi @palpatim |
Good Day !!! @palpatim Can I request you to update me on this issue? It is critical for us to adhere to our company's Enterprise Asset policies and move all the amplify code from github.com to GHES. |
Hi Team, |
Hi @palpatim @AnilMaktala |
Describe the feature you'd like to request
Hi Team,
Hope this message finds you well.
In our office project, we are trying to migrate our amplify codebase from github.com to ghes (our internal GHES instance). In the process, I have gone through the process attached in the given text file to:
Frontend build.zip was successful.
But the 2nd point, I have tried the following:
I am not using github for amplify to build itself. I want to compile backend locally of my local amplify/backend/ and produce new amplify-builds/ and upload to s3 with aws amplify create-backend commmand line.
Error:
#####################################################################################################
I have run below command to build backend api,functions code under amplify/backend/awscloudformation/build.
#####################################################################################################
1.amplify push --codegen
Error: Not able to find backend environment.
2.Try, amplify pull --appId d173tjf92bxxxx --envName testmig
Error: × There was an error initializing your environment.
🛑 Could not find a deployment bucket for the specified backend environment. This environment may have been deleted.
Resolution: Make sure the environment has been initialized with "amplify init" or "amplify env add".
3.amplify add env testmig
Note: It is recommended to run this command from the root of your app directory
Using default provider awscloudformation
× Initializing your environment: testmig
× There was an error initializing your environment.
🛑 Could not initialize platform for 'testmig': The specified key does not exist.
It seems like the error "The specified s3 key does not exist" is still persisting. I have all the meta data properly written in team-provider-info.json to determine where to push the build artifacts and how to configure the backend environment.
Updating team-provider-info.json:
Please advise as it is critical for us to move our amplify code from github.com to internal GHES.
Thanks,
Sriram
amplify_push_codegen_keydoesn't_exit.txt
Describe the solution you'd like
I want the following to be done gracefully without errors.
Compile Backend Locally:
amplify push --codegen
to compile the backend and generate the necessary build artifacts.Prepare Deployment Artifacts:
amplify/#current-cloud-backend/
to a new directory:cp -r amplify/#current-cloud-backend/ amplify-builds/
Upload Artifacts to S3:
amplify-builds/
directory with your S3 bucket:Create Backend Environment Using AWS CLI:
aws amplify create-backend-environment
command to create the backend environment:Describe alternatives you've considered
I haven't received not much inputs from amplify issues in github.com
Additional context
No response
Is this something that you'd be interested in working on?
Would this feature include a breaking change?
The text was updated successfully, but these errors were encountered: