/Binod-Merchandise

Website made for E-Cell Web team selection

Primary LanguageJavaScriptApache License 2.0Apache-2.0

Binod-Merchandise

Website made for E-Cell Web team selection

Getting Started

Follow these instructions to get a copy of the project up and running on your local machine for development and testing purposes. via opening the command prompt

Make a new directory

 mkdir directory_Name

Switch to that Direcctory

 cd directory_Name

Clone git repository

 git clone https://github.com/ContriHUB/Binod-Merchandise.git

Direct switch to VS Code from Terminal

 code .

Install Dependencies:

Make sure you have Yarn installed. If not, you can install it using:

 npm install -g yarn

Then, use Yarn to install the project dependencies:

 yarn install

Run the Application:

Start the development server:

 yarn start

Testing (This command will execute any test files in your project)

 yarn test

Building for Production:

 yarn build

For installation of requirements.txt

Install python3

sudo apt-get install python3

Install pip

sudo apt install python3-pip

Install requirements.txt using pip

pip install -r requirements.txt

FOR ENABLING FASTAPI WRITING PASSWORD AND EMAIL IN ENVIROMENT VARIABLE

FOR WINDOWS:
    setx YOUR_APP_EMAIL "youremail@domain.com"
    setx YOUR_APP_PASSWORD "password_goes_here"
FOR LINUX/macOS:
    export YOUR_APP_EMAIL="youremail@domain.com"
    export YOUR_APP_PASSWORD="password_goes_here"