This project contains some code that illustrates how to setup an email queue in a nodejs application using bullJs
- Users can sign up.
Via Cloning The Repository
# Clone the app
git clone https://github.com/vic3king/bulljs-email-setup.git
# Required .env credentials
PORT=3333
NODE_ENV=development
DEV_DATABASE_URL=
REDIS_URL='redis://127.0.0.1:6379'
FRONTEND_APP_URL= e.g localhost:3333
# Switch to directory
cd < cloned directory >
npm install
# Run migrations
npm run migration:reset
npm run seed
#Start the application
npm run start:dev
#View the application
navigate to localhost:3333 to view the application
Hosted api can be found here
Request | End Point | Action |
---|---|---|
GET | / | Welcome screen |
POST | /v1/auth/register/ | Register a user |