My personal API for my projects and services. This API is built with Node.js and Express.js, and it serves as a backend for various features that I use across my projects.
Currently, the features include:
- Open Graph Image Generation: Generates Open Graph images for my projects.
- Spotify API: Provides access to my Spotify data, like my currently playing track, top tracks, etc.
Here are the steps to run the project locally:
-
Clone the repository
git clone https://github.com/ccrsxx/api.git
-
Change directory to the project
cd api
-
Install dependencies
npm i
-
Set up environment variables
Create a copy of the
.env.example
file and name it.env.local
. Make sure to fill in the credentials correctly.cp .env.example .env.local
-
Run the app
npm run dev