developedbyjay / audible

This is an audible clone. It is open-source, so you can contribute it. Read the instructions in the Readme to get started

Home Page:https://audible.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Audible clone (open source)

We are going to create a pr. You need to know basic git and github commands to make a pr. If you don't know about it, check my Git and Github crash course

Click on fork in the top left corner of your screen. Clone the repo you have been redirected to

git clone url_redirected_to

Installing dependencies

If you use yarn then run

yarn install

and if you use npm delete yarn.lock and run

npm install

Creating a new branch

git checkout -b new-feature

Starting server

If you are using yarn then run

yarn dev

and if you using npm run

npm run dev

If you are devloping database or next auth feature

Setting up next auth

If you don't know about next auth follow this tutorial tutorial and get your credentials. And your .env.local file will look like this

GOOGLE_CLIENT_ID=client_id
GOOGLE_CLIENT_SECRET=client_secret
NEXTAUTH_URL=http://localhost:3000/

Submitting the new features.

Pushing the code to Github

git add .
git commit -m "commit message (what you added)"
git push origin new-feature

In github if you refresh the page.

  • You can see a button Compare and Pull request.
  • Click on that button.

Now just add a title and description and create a pull request.

You have successfully created a pull request and I will review and merge it soon.

Contributors:

Contributors

About

This is an audible clone. It is open-source, so you can contribute it. Read the instructions in the Readme to get started

https://audible.vercel.app

License:MIT License


Languages

Language:JavaScript 94.0%Language:CSS 6.0%