Running from code
You can also run LinkStash from the code.
Pre-requisites
- git
- nvm
- node
- mysql database
Setting up the Development Environment
- Clone the repository
git clone http://github.linkstash/
- Set Up Environment Configurations:
.env
can be created by copying the.env.example
files in their respective folders.- backend :
./apps/linkstash-backend/.env
- nextjs supports having environment specific env file e.g
env.local
for local development.
- nextjs supports having environment specific env file e.g
- frontend :
./apps/linkstash-frontened/.env
- Start the backend
- Initialize databse
npm -w=apps/linkstash-backend run migrate
- Start the application
npm -w=apps/linkstash-backend start
- Initialize databse
- Start the frontend
- Start the application
npm start
- Start the application