Config ci cd (#5)
* feat: Add GitHub Actions workflow for Amplify deployment and configuration * feat: Update Amplify deployment workflow and add Serverless deployment workflow * feat: Set environment variables for Amplify monorepo deployment * feat: Refactor Amplify deployment configuration for monorepo structure * feat: Update environment variable naming and refactor image URL handling across the application * feat: Add Jest configuration and tests for project and user handlers
This commit is contained in:
35
tasker-client/amplify.json
Normal file
35
tasker-client/amplify.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"version": 1,
|
||||
"applications": [
|
||||
{
|
||||
"appRoot": "tasker-client",
|
||||
"frontend": {
|
||||
"phases": {
|
||||
"preBuild": {
|
||||
"commands": [
|
||||
"npm ci"
|
||||
]
|
||||
},
|
||||
"build": {
|
||||
"commands": [
|
||||
"npm run build"
|
||||
]
|
||||
}
|
||||
},
|
||||
"artifacts": {
|
||||
"baseDirectory": ".next",
|
||||
"files": [
|
||||
"**/*"
|
||||
]
|
||||
},
|
||||
"cache": {
|
||||
"paths": [
|
||||
"node_modules/**/*",
|
||||
".next/cache/**/*",
|
||||
".npm/**/*"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user