Revert to version 71327bd
This commit is contained in:
parent
96bbc6c936
commit
08314098a2
@ -3,11 +3,11 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
production: {
|
production: {
|
||||||
dialect: 'postgres',
|
dialect: 'postgres',
|
||||||
username: 'jlegault',
|
username: process.env.DB_USER,
|
||||||
password: 'RH5yQRJqQ5GcMyVQ',
|
password: process.env.DB_PASS,
|
||||||
database: 'etgrow.com_app_20251105',
|
database: process.env.DB_NAME,
|
||||||
host: 'pg12-cluster.cluster-cyinogledyyf.us-east-1.rds.amazonaws.com',
|
host: process.env.DB_HOST,
|
||||||
port: '5432',
|
port: process.env.DB_PORT,
|
||||||
logging: console.log,
|
logging: console.log,
|
||||||
seederStorage: 'sequelize',
|
seederStorage: 'sequelize',
|
||||||
},
|
},
|
||||||
@ -22,11 +22,11 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
dev_stage: {
|
dev_stage: {
|
||||||
dialect: 'postgres',
|
dialect: 'postgres',
|
||||||
username: 'jlegault',
|
username: process.env.DB_USER,
|
||||||
password: 'RH5yQRJqQ5GcMyVQ',
|
password: process.env.DB_PASS,
|
||||||
database: 'etgrow.com_app_20251105',
|
database: process.env.DB_NAME,
|
||||||
host: 'pg12-cluster.cluster-cyinogledyyf.us-east-1.rds.amazonaws.com',
|
host: process.env.DB_HOST,
|
||||||
port: '5432',
|
port: process.env.DB_PORT,
|
||||||
logging: console.log,
|
logging: console.log,
|
||||||
seederStorage: 'sequelize',
|
seederStorage: 'sequelize',
|
||||||
}
|
}
|
||||||
|
|||||||
@ -17,14 +17,6 @@ const menuAside: MenuAsideItem[] = [
|
|||||||
label: 'Export Wizard',
|
label: 'Export Wizard',
|
||||||
icon: icon.mdiFileExportOutline,
|
icon: icon.mdiFileExportOutline,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: 'Exporting Testing for ET Grow',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
href: '/et-grow-export',
|
|
||||||
label: 'ET Grow Export',
|
|
||||||
icon: icon.mdiFileExportOutline,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
{
|
||||||
href: '/users/users-list',
|
href: '/users/users-list',
|
||||||
|
|||||||
@ -1,34 +0,0 @@
|
|||||||
import { mdiFileExportOutline } from '@mdi/js';
|
|
||||||
import Head from 'next/head';
|
|
||||||
import React, { ReactElement } from 'react';
|
|
||||||
import CardBox from '../components/CardBox';
|
|
||||||
import LayoutAuthenticated from '../layouts/Authenticated';
|
|
||||||
import SectionMain from '../components/SectionMain';
|
|
||||||
import SectionTitleLineWithButton from '../components/SectionTitleLineWithButton';
|
|
||||||
import { getPageTitle } from '../config';
|
|
||||||
|
|
||||||
const ETGrowExport = () => {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<Head>
|
|
||||||
<title>{getPageTitle('ET Grow Export')}</title>
|
|
||||||
</Head>
|
|
||||||
<SectionMain>
|
|
||||||
<SectionTitleLineWithButton icon={mdiFileExportOutline} title="ET Grow Export" main>
|
|
||||||
{''}
|
|
||||||
</SectionTitleLineWithButton>
|
|
||||||
<CardBox>
|
|
||||||
<div className="text-center py-24 text-gray-500 dark:text-slate-400">
|
|
||||||
Hello World
|
|
||||||
</div>
|
|
||||||
</CardBox>
|
|
||||||
</SectionMain>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
ETGrowExport.getLayout = function getLayout(page: ReactElement) {
|
|
||||||
return <LayoutAuthenticated>{page}</LayoutAuthenticated>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ETGrowExport;
|
|
||||||
Loading…
x
Reference in New Issue
Block a user