* chore(React): %s/react-pure-render/React.PureComponent/gc * fix(Settings): Should redirect to signup when unauthen * feat(Development): Use SES for mail if defined * feat(Nav): Show anon navbar when logged in * fix(server/datasources): Make sure mailhog works if no ses keys are found LB will use both mail settings if using both local and dev * fix(Nav): Use text instead of icons * fix(Nav): Make donate page open in new tab
		
			
				
	
	
		
			30 lines
		
	
	
		
			654 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			654 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const debug = require('debug')('fcc:server:datasources');
 | 
						|
const dsLocal = require('./datasources.production.js');
 | 
						|
 | 
						|
const ds = {
 | 
						|
  ...dsLocal
 | 
						|
};
 | 
						|
// use [MailHog](https://github.com/mailhog/MailHog) if no SES keys are found
 | 
						|
if (!process.env.SES_ID) {
 | 
						|
  ds.mail = {
 | 
						|
    connector: 'mail',
 | 
						|
    transport: {
 | 
						|
      type: 'smtp',
 | 
						|
      host: 'localhost',
 | 
						|
      secure: false,
 | 
						|
      port: 1025,
 | 
						|
      tls: {
 | 
						|
        rejectUnauthorized: false
 | 
						|
      }
 | 
						|
    },
 | 
						|
    auth: {
 | 
						|
      user: 'test',
 | 
						|
      pass: 'test'
 | 
						|
    }
 | 
						|
  };
 | 
						|
  debug(`using MailHog server on port ${ds.mail.transport.port}`);
 | 
						|
} else {
 | 
						|
  debug('using AWS SES to deliver emails');
 | 
						|
}
 | 
						|
module.exports = ds;
 |