Revert to version 71327bd
This commit is contained in:
parent
96bbc6c936
commit
08314098a2
@ -3,11 +3,11 @@
|
||||
module.exports = {
|
||||
production: {
|
||||
dialect: 'postgres',
|
||||
username: 'jlegault',
|
||||
password: 'RH5yQRJqQ5GcMyVQ',
|
||||
database: 'etgrow.com_app_20251105',
|
||||
host: 'pg12-cluster.cluster-cyinogledyyf.us-east-1.rds.amazonaws.com',
|
||||
port: '5432',
|
||||
username: process.env.DB_USER,
|
||||
password: process.env.DB_PASS,
|
||||
database: process.env.DB_NAME,
|
||||
host: process.env.DB_HOST,
|
||||
port: process.env.DB_PORT,
|
||||
logging: console.log,
|
||||
seederStorage: 'sequelize',
|
||||
},
|
||||
@ -22,11 +22,11 @@ module.exports = {
|
||||
},
|
||||
dev_stage: {
|
||||
dialect: 'postgres',
|
||||
username: 'jlegault',
|
||||
password: 'RH5yQRJqQ5GcMyVQ',
|
||||
database: 'etgrow.com_app_20251105',
|
||||
host: 'pg12-cluster.cluster-cyinogledyyf.us-east-1.rds.amazonaws.com',
|
||||
port: '5432',
|
||||
username: process.env.DB_USER,
|
||||
password: process.env.DB_PASS,
|
||||
database: process.env.DB_NAME,
|
||||
host: process.env.DB_HOST,
|
||||
port: process.env.DB_PORT,
|
||||
logging: console.log,
|
||||
seederStorage: 'sequelize',
|
||||
}
|
||||
|
||||
@ -17,14 +17,6 @@ const menuAside: MenuAsideItem[] = [
|
||||
label: 'Export Wizard',
|
||||
icon: icon.mdiFileExportOutline,
|
||||
},
|
||||
{
|
||||
label: 'Exporting Testing for ET Grow',
|
||||
},
|
||||
{
|
||||
href: '/et-grow-export',
|
||||
label: 'ET Grow Export',
|
||||
icon: icon.mdiFileExportOutline,
|
||||
},
|
||||
|
||||
{
|
||||
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