A simple tool for creating fresh Next.js applications using a Docker container with Bun. The image is updated every two weeks to maintain the latest package versions.
Found on:
It consists of the following packages, libraries and frameworks:
Looking to spend less time messing with configuration settings? Eager to jump straight into coding! Well you've come to the right place!
This tool builds a set of frontend files quickly with a single command, while maintaining the following key aspects:
- Compatibility across devices
- File isolation with easy copying
- Maximising package build speed using bun without issues on
Windows
(npm
is slow!) - Automatic package updates to their latest version often
To achieve this, we use Docker with GitHub actions.
-
Firstly, install Docker
-
Next, install the package through pip using:
pip install build_nextjs_app
-
Run it with your desired
project_name
build-nextjs-app <project_name>
And that's it! Open the project folder and you'll see all the assets.
Because of the way we use this tool (see the next section), we haven't added an .env
file. However, we understand their importance and encourage you to use this as a template:
# Uploadthing: storing files and handling file uploading
# https://uploadthing.com/
UPLOADTHING_SECRET=
NEXT_PUBLIC_UPLOADTHING_APP_ID=
# Clerk: User Authentication
# https://clerk.com/docs/quickstarts/nextjs
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/auth/sign-in
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/auth/sign-up
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/
# Stripe: user payments
# https://stripe.com/docs
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=
STRIPE_SECRET_KEY=
STRIPE_WEBHOOK_SECRET=
NEXT_PUBLIC_STRIPE_CLIENT_ID=
NEXT_PUBLIC_PLATFORM_SUBSCRIPTION_PERCENT=1
NEXT_PUBLIC_PLATFORM_ONETIME_FEE=2
NEXT_PUBLIC_PLATFORM_PERCENT=1
NEXT_PRODUCT_ID=
Also, we've added the dotenv
package to provide accessibility to .env
files outside of the existing directory, such as projects for our own use case.
We personally use this in our create-api-app tool for building applications with a FastAPI backend and NextJS frontend.
If you are looking for a FastAPI backend as well, consider trying the tool out!