Title | Description |
---|---|
Why AutoBot | For all the ML developers out there, getting the dataset that matches the criteria for your Machine Learning Model is hard. We get it. That is why we created Auto Bot to help you buy/auction/sell the dataset of your choices. |
What it does | AutoBot is the ultimate marketplace for all the ML developers looking for the right kind of resources for your apps. Find & Search for datasets that can train your model, test your model, and develop your model. |
How it works | Buying & Selling datasets have never been easier, until now! Built with powerful search tools like Algolia, AutoBot helps you find the resources you need without wading through reams of information on the internet- saving your valuable time as a developer and making you more productive than ever. |
- PRs should be generated against
development
. - Remember to run
npm run lint:fix
before creating pull request. - Netlify will create a preview inside pull request, please check if your work is fine.
- When in doubt, ask your queries on discussions
Take a look at the Contribution Guidelines and open a new Issue or Pull Request on GitHub.
# install dependencies
npm install
# development run
npm run start
# build for production
npm run build
Create your firebase project
Fill in the environment variables in .env
file in root directory
To setup api key, App Id, and your search index on windows as environment variables,
Hit Win+R > type cmd.exe, followed by the commands
set "ALG_ADM_API_KEY=replace_with_algolia_admin_key" && npm start
set "ALG_APP_ID=replace_with_algolia_app_id" && npm start
set "ALG_IDX=replace_with_your_index" && npm start
or, Win+R > type powershell, followed by the command
($env:ALG_ADM_API_KEY = "replace_with_algolia_admin_key") -and (npm start)
($env:ALG_APP_ID = "replace_with_algolia_app_id") -and (npm start)
($env:ALG_IDX = "replace_with_your_index") -and (npm start)
To setup api key, App Id, and your search index on Linux & macOS as environment variables,
Bash:
ALG_ADM_API_KEY=replace_with_algolia_admin_key npm start
ALG_APP_ID=replace_with_algolia_app_id npm start
ALG_IDX=replace_with_your_index npm start