Skip to main content
Version: 1.0.0

Running from code

You can also run LinkStash from the code.

Pre-requisites

  • git
  • nvm
  • node
  • mysql database

Setting up the Development Environment

  1. Clone the repository
    git clone http://github.linkstash/
  2. Start the backend
    1. Switch to the backend folder
      cd linkstash-backend
    2. Create .env.local and configure database connection settings.

      See configuration for all configuration settings.

      cp env.example env.local 
      nano env.local
    3. Initialize databse
      nvm use
      npm run migrate
    4. Start the application
      npm start
  3. Start the frontend
    1. Switch to the backend folder
      cd linkstash-frontend
    2. Create .env.local and configure database connection settings.

      See configuration for all configuration settings.

      cp env.example env.local 
      nano env.local
    3. Start the application
      npm start