This project is a simple Newsletter Subscription API built with Flask and SQLAlchemy. It provides an endpoint to add new subscribers to a newsletter.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- Python 3.8 or higher
- PostgreSQL
-
Clone the repository:
git clone https://github.com/ankurgajurel/newsletter-backend.git
-
Navigate to the project directory:
cd newsletter-backend
-
Install the required Python packages:
pip install -r requirements.txt
-
Set up your PostgreSQL database and update the connection string in the .env file.
-
Run the Flask application:
flask run
To add a new subscriber, send a POST request to the /newSubscriber endpoint with a JSON body containing the fullName and email of the subscriber:
This application can also be run using Docker. Here's how you can do it:
-
Make sure you have Docker installed on your machine.
-
Navigate to the project directory.
-
Build the Docker image:
docker build -t newsletter-backend .
Run the Docker container:
docker run -p 4040:4040 newsletter-backend
Now, your application should be running at http://localhost:5000.
Setup your .env file and run:
docker compose up
Now, your application should be running at http://localhost/
You can test the API using a tool like Postman or curl.
Thanks to Flask and SQLAlchemy for making this project possible.