Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 1022 Bytes

installation.md

File metadata and controls

29 lines (24 loc) · 1022 Bytes

Manual Installation.

Note: The installation steps assume you are using Window or MacOS.

Follow these steps to run in development mode:

  1. Fork this repository and auxify-backend into your own GitHub account and clone it to your local computer if you have not already.

  2. You need to create an .env file in the root directory by first copy the content of .env.example

$ cp .env.example .env` # for MacOS
$ copy .env.example .env` # for Windows
  1. You need to update .env with your own Spotify credentials and Pusher App credentials that you have created during the installation of auxify-backend

  2. Navigate into the project folder and install all its necessary dependencies with npm.

$ cd auxify-frontend
$ npm install

or with yarn (recommended)

$ cd auxify-frontend
$ yarn install
  1. Start the development process for the repo by navigating to the repository and run
npm run dev