The Biergarten App is a web application designed for beer lovers to share their favorite brews and breweries with like-minded people online.
This application's stack consists of Next.js, Prisma and Neon Postgres. I'm motivated to learn more about these technologies while exploring my passion for beer.
I've also incorporated different APIs into the application, such as the Cloudinary API for image uploading, the SparkPost API for email services as well as Mapbox for geolocation and map data.
To handle serverless functions (API routes), I use the next-connect package.
On the client-side, I use Tailwind CSS, Headless UI and Daisy UI for styling to create a visually appealing and user-friendly interface.
I'm sharing my code publicly so that others can learn from it and use it as a reference for their own projects.
In this app you will encounter various beer related terms. Here is a list of terms used in this app and their definitions.
Alcohol by volume (abbreviated as ABV) is a standard measure of how much alcohol (ethanol) is contained in a given volume of an alcoholic beverage (expressed as a volume percent).
The International Bitterness Units scale, or IBU, is used to approximately quantify the bitterness of beer. This scale is not measured on the perceived bitterness of the beer, but rather the amount of a component of beer known as iso-alpha acids.
- Next.js
- A React based framework for building web applications offering several features such as server side rendering, static site generation and API routes.
- SWR
- A React Hooks library for fetching data with support for caching, revalidation and error handling.
- Tailwind CSS
- A popular open-source utility-first CSS framework that provides pre-defined classes to style HTML elements.
- Headless UI
- A set of completely unstyled, fully accessible UI components, designed to integrate beautifully with Tailwind CSS.
- Daisy UI
- A component library for Tailwind CSS that provides ready-to-use components for building user interfaces.
- Prisma
- An open-source ORM for Node.js and TypeScript applications.
- Neon Postgres
- A managed PostgreSQL database service powered by Neon.
- Cloudinary
- A cloud-based image and video management service that provides developers with an easy way to upload, store, and manipulate media assets.
- SparkPost
- A cloud-based email delivery service that provides developers with an easy way to send transactional and marketing emails.
- Mapbox
- A suite of open-source mapping tools that allows developers to add custom maps, search, and navigation into their applications.
- next-connect
- A promise-based method routing and middleware layer for Next.js.
Before you can run this application locally, you will need to have the following installed on your machine:
You will also need to create a free account with the following services:
- Clone this repository and navigate to the project directory.
git clone https://github.com/aaronpo97/the-biergarten-app
cd the-biergarten-app
- Run the following command to install the dependencies.
npm install
- Run the following script to create a
.env
file in the root directory of the project and add the following environment variables. Update these variables with your own values.
echo "BASE_URL=
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME=
CLOUDINARY_KEY=
CLOUDINARY_SECRET=
CONFIRMATION_TOKEN_SECRET=
RESET_PASSWORD_TOKEN_SECRET=
SESSION_SECRET=
SESSION_TOKEN_NAME=
SESSION_MAX_AGE=
NODE_ENV=
POSTGRES_PRISMA_URL=
POSTGRES_URL_NON_POOLING=
SHADOW_DATABASE_URL=
ADMIN_PASSWORD=
MAPBOX_ACCESS_TOKEN=
SPARKPOST_API_KEY=
SPARKPOST_SENDER_ADDRESS=" > .env
BASE_URL
is the base URL of the application.- For example, if you are running the application locally, you can set this to
http://localhost:3000
.
- For example, if you are running the application locally, you can set this to
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME
,CLOUDINARY_KEY
, andCLOUDINARY_SECRET
are the credentials for your Cloudinary account.- You can create a free account here.
CONFIRMATION_TOKEN_SECRET
is the secret used to sign the confirmation token used for email confirmation.- You can generate a random string using the
openssl rand -base64 127
command.
- You can generate a random string using the
RESET_PASSWORD_TOKEN_SECRET
is the secret used to sign the reset password token.- You can generate a random string using the
openssl rand -base64 127
command.
- You can generate a random string using the
SESSION_SECRET
is the secret used to sign the session cookie.- Use the same command as above to generate a random string.
SESSION_TOKEN_NAME
is the name of the session cookie.- You can set this to
biergarten
.
- You can set this to
SESSION_MAX_AGE
is the maximum age of the session cookie in seconds.- You can set this to
604800
(1 week).
- You can set this to
POSTGRES_PRISMA_URL
is a pooled connection string for your Neon Postgres database.POSTGRES_URL_NON_POOLING
is a non-pooled connection string for your Neon Postgres database used for migrations.SHADOW_DATABASE_URL
is a connection string for a secondary database used for migrations to detect schema drift.MAPBOX_ACCESS_TOKEN
is the access token for your Mapbox account.- You can create a free account here.
NODE_ENV
is the environment in which the application is running.- You can set this to
development
orproduction
.
- You can set this to
SPARKPOST_API_KEY
is the API key for your SparkPost account.- You can create a free account here.
SPARKPOST_SENDER_ADDRESS
is the email address that will be used to send emails.ADMIN_PASSWORD
is the password for the admin account created when seeding the database.
- Initialize the database and run the migrations.
npx prisma generate
npx prisma migrate dev
- Seed the database with some initial data.
npm run seed
- Start the application.
npm run dev
The Biergarten App is licensed under the GNU General Public License v3.0. This means that anyone is free to use, modify, and distribute the code as long as they also distribute their modifications under the same license.
I encourage anyone who uses this code for educational purposes to attribute me as the original author, and to provide a link to this repository.
By contributing to this repository, you agree to license your contributions under the same license as the project.
If you have any questions or concerns about the license, please feel free to submit an issue to this repository.
I hope that this project will be useful to other developers and beer enthusiasts who are interested in learning about web development with Next.js, Prisma, Postgres, and other technologies.