Commit aaffd232 by sujata

backend changes

1 parent 7a5a97c4
HOST=0.0.0.0 HOST=0.0.0.0
PORT=1337 PORT=1338
APP_KEYS="toBeModified1,toBeModified2" APP_KEYS="toBeModified1,toBeModified2"
API_TOKEN_SALT=tobemodified API_TOKEN_SALT=tobemodified
ADMIN_JWT_SECRET=tobemodified ADMIN_JWT_SECRET=tobemodified
......
module.exports = ({ env }) => ({ module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'), host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337), port: env.int('PORT', 1338),
app: { app: {
keys: env.array('APP_KEYS'), keys: env.array('APP_KEYS'),
}, },
......
...@@ -110,139 +110,139 @@ export interface SharedMedia extends Struct.ComponentSchema { ...@@ -110,139 +110,139 @@ export interface SharedMedia extends Struct.ComponentSchema {
}; };
} }
export interface HomePeople extends Struct.ComponentSchema { export interface PeopleTeamMember extends Struct.ComponentSchema {
collectionName: 'components_home_people'; collectionName: 'components_people_team_members';
info: { info: {
displayName: 'People'; displayName: 'TeamMember';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Name: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'>; Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
peoplelist: Schema.Attribute.Component<'people.people-list', true>; Designation: Schema.Attribute.String & Schema.Attribute.Required;
}; };
} }
export interface HomeKnowlegeTab extends Struct.ComponentSchema { export interface PeopleTeamLeads extends Struct.ComponentSchema {
collectionName: 'components_home_knowlege_tabs'; collectionName: 'components_people_team_leads';
info: { info: {
displayName: 'KnowlegeTab'; displayName: 'Team Leads';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Name: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; Designation: Schema.Attribute.String & Schema.Attribute.Required;
CTA: Schema.Attribute.Component<'cta.cta', false>; Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
}; };
} }
export interface HomeKnowledgeshack extends Struct.ComponentSchema { export interface PeoplePeopleList extends Struct.ComponentSchema {
collectionName: 'components_home_knowledgeshacks'; collectionName: 'components_people_people_lists';
info: { info: {
displayName: 'Knowledgeshack'; displayName: 'people-list';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; heading: Schema.Attribute.String;
Description: Schema.Attribute.String; description: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>;
}; };
} }
export interface HomeIndustry extends Struct.ComponentSchema { export interface PeopleOverview extends Struct.ComponentSchema {
collectionName: 'components_home_industries'; collectionName: 'components_people_overviews';
info: { info: {
displayName: 'Industry'; displayName: 'Overview';
description: ''; description: '';
}; };
attributes: { attributes: {
Subtitle: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>; Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>; Description: Schema.Attribute.Text;
}; };
} }
export interface HomeHome extends Struct.ComponentSchema { export interface PeopleAdvisoryBoard extends Struct.ComponentSchema {
collectionName: 'components_home_homes'; collectionName: 'components_people_advisory_boards';
info: { info: {
displayName: 'Home Banner'; displayName: 'Advisory Board';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String & Schema.Attribute.Required; Name: Schema.Attribute.String & Schema.Attribute.Required;
Subtitle: Schema.Attribute.String; Description: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text & Schema.Attribute.Required; Image: Schema.Attribute.Media<'images'>;
Mobilebanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Desktopbanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
BackgroundBanner: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
}; };
} }
export interface PeopleTeamMember extends Struct.ComponentSchema { export interface HomePeople extends Struct.ComponentSchema {
collectionName: 'components_people_team_members'; collectionName: 'components_home_people';
info: { info: {
displayName: 'TeamMember'; displayName: 'People';
description: ''; description: '';
}; };
attributes: { attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required; Heading: Schema.Attribute.String;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; Image: Schema.Attribute.Media<'images'>;
Designation: Schema.Attribute.String & Schema.Attribute.Required; peoplelist: Schema.Attribute.Component<'people.people-list', true>;
}; };
} }
export interface PeopleTeamLeads extends Struct.ComponentSchema { export interface HomeKnowlegeTab extends Struct.ComponentSchema {
collectionName: 'components_people_team_leads'; collectionName: 'components_home_knowlege_tabs';
info: { info: {
displayName: 'Team Leads'; displayName: 'KnowlegeTab';
}; };
attributes: { attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String;
Designation: Schema.Attribute.String & Schema.Attribute.Required; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; CTA: Schema.Attribute.Component<'cta.cta', false>;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
}; };
} }
export interface PeoplePeopleList extends Struct.ComponentSchema { export interface HomeKnowledgeshack extends Struct.ComponentSchema {
collectionName: 'components_people_people_lists'; collectionName: 'components_home_knowledgeshacks';
info: { info: {
displayName: 'people-list'; displayName: 'Knowledgeshack';
description: ''; description: '';
}; };
attributes: { attributes: {
heading: Schema.Attribute.String; Heading: Schema.Attribute.String;
description: Schema.Attribute.String; Description: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>;
}; };
} }
export interface PeopleOverview extends Struct.ComponentSchema { export interface HomeIndustry extends Struct.ComponentSchema {
collectionName: 'components_people_overviews'; collectionName: 'components_home_industries';
info: { info: {
displayName: 'Overview'; displayName: 'Industry';
description: ''; description: '';
}; };
attributes: { attributes: {
Subtitle: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'>;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
}; };
} }
export interface PeopleAdvisoryBoard extends Struct.ComponentSchema { export interface HomeHome extends Struct.ComponentSchema {
collectionName: 'components_people_advisory_boards'; collectionName: 'components_home_homes';
info: { info: {
displayName: 'Advisory Board'; displayName: 'Home Banner';
description: '';
}; };
attributes: { attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.String & Schema.Attribute.Required; Subtitle: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>; Description: Schema.Attribute.Text & Schema.Attribute.Required;
Mobilebanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Desktopbanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
BackgroundBanner: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
}; };
} }
...@@ -657,16 +657,16 @@ declare module '@strapi/strapi' { ...@@ -657,16 +657,16 @@ declare module '@strapi/strapi' {
'shared.page-schema': SharedPageSchema; 'shared.page-schema': SharedPageSchema;
'shared.meta-social': SharedMetaSocial; 'shared.meta-social': SharedMetaSocial;
'shared.media': SharedMedia; 'shared.media': SharedMedia;
'home.people': HomePeople;
'home.knowlege-tab': HomeKnowlegeTab;
'home.knowledgeshack': HomeKnowledgeshack;
'home.industry': HomeIndustry;
'home.home': HomeHome;
'people.team-member': PeopleTeamMember; 'people.team-member': PeopleTeamMember;
'people.team-leads': PeopleTeamLeads; 'people.team-leads': PeopleTeamLeads;
'people.people-list': PeoplePeopleList; 'people.people-list': PeoplePeopleList;
'people.overview': PeopleOverview; 'people.overview': PeopleOverview;
'people.advisory-board': PeopleAdvisoryBoard; 'people.advisory-board': PeopleAdvisoryBoard;
'home.people': HomePeople;
'home.knowlege-tab': HomeKnowlegeTab;
'home.knowledgeshack': HomeKnowledgeshack;
'home.industry': HomeIndustry;
'home.home': HomeHome;
'layout.whatwedo': LayoutWhatwedo; 'layout.whatwedo': LayoutWhatwedo;
'layout.we-offer': LayoutWeOffer; 'layout.we-offer': LayoutWeOffer;
'layout.technicalexpertise': LayoutTechnicalexpertise; 'layout.technicalexpertise': LayoutTechnicalexpertise;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!