Prototypr is an open-source blogging platform that focuses on prototyping, UX design, front-end development, and beyond, serving as a hub for designers and developers to discover the latest tools, resources, and insights in these fields.
In the past, Prototypr has been backed by Adobe Fund, and Interledger Foundation to build a Web Monetized Publishing platform.
Important: This repo is only the Next.js Frontend app, but the features below describe the whole project.
This repo is for reference only - there's currently no documentation or seed data that is required to set up the platform locally - so it's not advised to do it yet. You can install the Prototypr Editor separately though (see below).
π If you want to set it up, consider sponsoring me so I can create documentation, seed data, and all things necessary to install and run the project.
[UPDATE: AUG 2024] The Prototypr Editor is now available as a standalone NPM package that you can install separately (I still need to add a license, probably will put MIT).
Prototypr is an evolving community blogging ecosystem. Features have been added based on what has been needed for running the site, so β οΈit may be tricky to duplicate features for a new project. But here is what has been built so far:
That's a quick overview of what's done so far, and is available publicly. There's probably much more to list!
Some features are not available publicy because they're experimental β you can sponsor for access . These include:
AI really helps speed up content curation on Prototypr. While it's a great starting point, all the content still needs to be checked and edited by humans! Nothing generated by AI goes without editing.
Here's some notes on how the project was built, and how to run it. These notes are old, so please report any issues!
This Next.js app depends on a Strapi CMS backend, which is used as a headless CMS.
You don't need to install the Strapi CMS backend to run the front end - instead, you can connect to the development version we have running in the cloud by adding our hosted Strapi url in your .env
file (see 'Set up .env variables' section).
If you do want to run the backend locally though, here is a guide.
npm install --no-optional
from the project folder (we are using node v14.17.4)npm run dev
npm install --no-optional
- some @prototypr packages are not public, --no-optional is required to skip installing them.
Once you've cloned the repo, create a .env.local
file, and add the following:
STRAPI_PREVIEW_SECRET=_genrate_key
NEXT_PUBLIC_STRAPI_API_URL=yourstrapiapiurl.com
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=_genrate_key
NEXT_PUBLIC_API_URL=yourstrapiapiurl.com
NEXT_PUBLIC_DATABASE_URL=postgresql://[dbusername]:[dbpassword]@[dburl]:[db-port]/[name]
There is a script in the root of the repo to switch between npm packages and local packages.
./switch-mode.sh local
to switch to local development mode./switch-mode.sh npm
to switch to npm packages mode./switch-mode.sh src
to switch to src mode switch-mode will update the package.json in the root directory to point to the correct version of the package.
~
in the jsconfig.json is a path alias for the node_modules folder. This is to allow the use of the local packages in the src mode.@
in the jsconfig.json is a path alias for the project root.