- Clone repository :
git clone https://github.com/Anhduchb01/FinSight.git
cd FinSight
- Structure Project :
📦 FinSight
┣ 📂 frondEnd
┃ ┗ 📜 ...
┣ 📂 backEnd
┃ ┣ 📂 FinSight
┃ ┣ 📜 server.js
┃ ┗ 📜 ...
┃ ┣ 📂 FinSightAI
┃ ┣ 📜 app.py
┃ ┗ 📜 ...
┗ 📜 README.md
cd backEnd
cd FinSight
- install package :
npm install
- run nodejs server:
npm start
cd FinSightAI
-
Dùng Conda
- Tạo môi trường :
conda create -n env python==3.9.16
- Activate môi trường :
conda activate env
- Install thư viện :
pip install -r requirements.txt
-
Dùng venv
- Tạo môi trường :
python3 -m venv env
- Activate môi trường :
Window
env\Scripts\activate.bat
Linux
source env/bin/activate
- Install thư viện :
pip install -r requirements.txt
python app.y
cd frondEnd
- install package :
npm install
- run nuxtjs frondend :
npm run dev