Skip to content
/ citbus Public

Website created for the transport company: Santa Luzia Charter and Tourism

License

Notifications You must be signed in to change notification settings

igorssc/citbus

Repository files navigation

cover

Santa Luzia Charter and Tourism has more than 40 years of experience in the field of transport, offering its customers-in addition to quality, comfort, safety and innovation.

✨ Technologies

This project was developed with the following technologies:

  • React
  • Next.js
  • TypeScript
  • Sass

🔐 Environment variables

The system makes use of email sending, using nodemailer. For its correct operation, the following environment variables must be used:

HOSTMAIL=smtp.example.com
USERMAIL=username
PASSMAIL=password

To change nodemailer connection information, such as Port, change the file src/pages/api/email.ts

const transporter = nodemailer.createTransport({
  host: process.env.HOSTMAIL,
  port: 587,
  auth: {
    user: process.env.USERMAIL,
    pass: process.env.PASSMAIL
  },
  tls: {
    rejectUnauthorized: false,
    ciphers: 'SSLv3'
  }
})

🚀 How to run

  • Clone the repository
git clone https://github.com/igorssc/citbus.git

cd citbus
  • Install dependencies
yarn

# or

npm init
  • Put your environment variables in a file .env.local at the root of the project

  • Start the server

yarn dev

# or

npm run dev

You can now access localhost:3000 from your browser.

🪄 Preview

Access https://www.slfretamento.com.br

📝 License

This project is under MIT licence. See the archive LICENSE to more details.


Made with 💜 by IGS Design - Igor Santos 👋

About

Website created for the transport company: Santa Luzia Charter and Tourism

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published