Skip to content

SongCloud, a simple clone of Soundcloud, allows users to discover new music and post their music for the world to hear.

Notifications You must be signed in to change notification settings

scorrea310/SongCloud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SongCloud

SongCloud is a clone of SoundCloud where users can listen to songs uploaded by other users as well as upload their own songs.

Visit Live Site: https://song-cloud-clone.herokuapp.com/

Walkthrough

Landing Page

Screen Shot 2022-03-21 at 10 25 31 AM

Users can sign, login, or use Demo User Screen Shot 2022-03-21 at 10 25 59 AM

Users are directed to home page when logged in. Users can see their own songs as well as discover other sounds. Screen Shot 2022-03-21 at 10 26 30 AM

Users can upload a song with a cover image here. Screen Shot 2022-03-21 at 10 27 20 AM

Users can edit their own songs or delete in the my Songs tab. Screen Shot 2022-03-21 at 10 28 34 AM

Getting Started

  1. Clone this repo.

git clone

  1. Install dependencies from the root directory.

npm install

3.Create a POSTGRESQL user with CREATEDB and PASSWORD in PSQL.

CREATE USER <name> WITH CREATEDB PASSWORD <'password'>

4.Create a .env file in the backend directory based on the .env.example found within the respective directory.

5.Enter your username and password information into your .env file along with your desired database name, a secured combination of characters for your JWT_SECRET, and your desired PORT (preferably 5000).

6.Add the following proxy to your package.json file within your frontend directory, replacing or keeping the 5000 port to match your PORT configuration found in your .env file.

"proxy": "http://localhost:5000"

7.Create Database, Migrate, and Seed models.

npx dotenv sequelize db:create npx dotenv sequelize db:migrate npx dotenv sequelize db:seed:all 8.Start the services in the backend directory.

9.Start the services in the frontend directory, which should open the project in your default browser. If not, navigate to http://localhost:3000. npm start

10.You can use the Demo user or create an account to begin using SongCloud. npm start

About

SongCloud, a simple clone of Soundcloud, allows users to discover new music and post their music for the world to hear.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages