Generate captions for videos containing ASL
backend
: Flask server that contains the AI modelfrontend
: User-facing SvelteKit frontend
cd backend
- (use any virtual environment of your choice and install the dependencies with
pip install -e .
) 2.5 export FLASK_APP=init.py flask run
Vite an environment variable to locate the server, which is served by default at http://localhost:5000
.
An example file is provided at .env.example.
To develop the frontend, make a copy of this file in the same directory and name it .env.development
.
Note: When it's time to compile the frontend, the deployment URL of the backend should be placed in
.env.production
.
- Install pnpm:
sudo npm install -g pnpm
cd frontend
pnpm install
pnpm dev