├── .env.example ├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── action.js ├── average-rollouts.js ├── config.js ├── experiments.json ├── index.js ├── messages.json ├── package.json ├── rollout-calculation.js ├── rollout.json ├── run.js └── user-experiments.json /.env.example: -------------------------------------------------------------------------------- 1 | DISCORD_TOKEN= 2 | FETCH_NEW_MESSAGES= -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Tolga1452] -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordexperimenthub/experimentAPI/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | api/ 3 | .env 4 | package-lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordexperimenthub/experimentAPI/HEAD/README.md -------------------------------------------------------------------------------- /action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordexperimenthub/experimentAPI/HEAD/action.js -------------------------------------------------------------------------------- /average-rollouts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordexperimenthub/experimentAPI/HEAD/average-rollouts.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordexperimenthub/experimentAPI/HEAD/config.js -------------------------------------------------------------------------------- /experiments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordexperimenthub/experimentAPI/HEAD/experiments.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordexperimenthub/experimentAPI/HEAD/index.js -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordexperimenthub/experimentAPI/HEAD/messages.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordexperimenthub/experimentAPI/HEAD/package.json -------------------------------------------------------------------------------- /rollout-calculation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordexperimenthub/experimentAPI/HEAD/rollout-calculation.js -------------------------------------------------------------------------------- /rollout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordexperimenthub/experimentAPI/HEAD/rollout.json -------------------------------------------------------------------------------- /run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordexperimenthub/experimentAPI/HEAD/run.js -------------------------------------------------------------------------------- /user-experiments.json: -------------------------------------------------------------------------------- 1 | [] --------------------------------------------------------------------------------