Hozifa Elgharbawy commited on
Commit
0bc00dd
·
2 Parent(s): 7c9783f 1094542

Merge branch 'main' of https://github.com/Modarb-Ai-Trainer/modarb-backend

Browse files
.env.example CHANGED
@@ -1,6 +1,5 @@
1
  PORT =
2
-
3
  DB_URI =
4
-
5
  JWT_SECRET =
6
- JWT_EXPIRES_IN =
 
 
1
  PORT =
 
2
  DB_URI =
 
3
  JWT_SECRET =
4
+ JWT_EXPIRES_IN =
5
+ MODELS_SERVER_URL=
.github/workflows/main.yml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Sync to Hugging Face hub
2
+ on:
3
+ push:
4
+ branches: [main]
5
+
6
+ # to run this workflow manually from the Actions tab
7
+ workflow_dispatch:
8
+
9
+ jobs:
10
+ sync-to-hub:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ with:
15
+ fetch-depth: 0
16
+ lfs: true
17
+ - name: Push to hub
18
+ env:
19
+ HF_TOKEN: ${{ secrets.HF_TOKEN }}
20
+ run: git push https://moahmedwafy:[email protected]/spaces/moahmedwafy/modarb-be main
Dockerfile CHANGED
@@ -1,9 +1,6 @@
1
  # Use the official Node.js v18 image as the base image
2
  FROM node:18
3
 
4
- # install python3 and pip
5
- RUN apt-get update && apt-get install -y python3 python3-pip
6
-
7
  # Set the working directory inside the container
8
  WORKDIR /app
9
 
@@ -27,12 +24,10 @@ ENV PORT=7860
27
  ARG JWT_SECRET
28
  ARG JWT_EXPIRES_IN
29
  ARG DB_URI
30
-
31
- # install python dependencies
32
- RUN pip3 install -r requirements.txt --break-system-packages
33
 
34
  # Expose the port on which your application will run
35
  EXPOSE $PORT
36
 
37
  # Command to run the application
38
- CMD ["./run-script.sh"]
 
1
  # Use the official Node.js v18 image as the base image
2
  FROM node:18
3
 
 
 
 
4
  # Set the working directory inside the container
5
  WORKDIR /app
6
 
 
24
  ARG JWT_SECRET
25
  ARG JWT_EXPIRES_IN
26
  ARG DB_URI
27
+ ARG MODELS_SERVER_URL
 
 
28
 
29
  # Expose the port on which your application will run
30
  EXPOSE $PORT
31
 
32
  # Command to run the application
33
+ CMD ["npm", "run", "start:dev"]
requirements.txt DELETED
@@ -1,7 +0,0 @@
1
- Flask>=3.0.0,<4.0.0
2
- anakin-language-server>=1.0.0,<2.0.0
3
- python-dotenv>=1.0.0,<2.0.0
4
- scikit-learn>=1.2.0,<1.3.0
5
- black>=24.0.0,<25.0.0
6
- pandas>=2.2.0,<2.3.0
7
- python-dotenv>=1.0.0,<2.0.0
 
 
 
 
 
 
 
 
run-script.sh DELETED
@@ -1,4 +0,0 @@
1
- #!/bin/sh
2
-
3
- python models-server/server.py &
4
- npm run start:dev
 
 
 
 
 
src/configs/config.ts CHANGED
@@ -29,5 +29,5 @@ export const config: Config = {
29
  expiresIn: Env.get("JWT_EXPIRES_IN").toString(),
30
  },
31
  saltRounds: Env.get("SALT_ROUNDS", 5).toNumber(),
32
- modelsServerUrl: `${Env.get("MODELS_HOST", 'http://127.0.0.1').toString()}:${Env.get("MODELS_PORT", '3030').toString()}`,
33
  };
 
29
  expiresIn: Env.get("JWT_EXPIRES_IN").toString(),
30
  },
31
  saltRounds: Env.get("SALT_ROUNDS", 5).toNumber(),
32
+ modelsServerUrl: Env.get("MODELS_SERVER_URL").toString(),
33
  };