Beeper Dashboard is a web application that provides a user interface for managing and monitoring various bridges associated with a Beeper account. It allows users to view detailed information about their account, bridges, and perform actions such as resetting passwords, deleting bridges, and posting bridge states.
To set up the Beeper Dashboard project, follow these steps:
-
Clone the repository:
git clone https://github.com/cameronaaron/beeperdash.git cd beeperdash
-
Create a virtual environment and activate it:
python3 -m venv venv source venv/bin/activate
-
Install the required dependencies:
pip install -r requirements.txt
-
Set up environment variables: Create a
.env
file in the project root directory and add the following environment variables:GITHUB_TOKEN=<your_github_token>
-
Run the application:
uvicorn main:app --reload
To use the Beeper Dashboard, follow these steps:
-
Open your web browser and navigate to
http://127.0.0.1:8000
. -
Login with your Beeper account email.
-
Enter the challenge code sent to your email.
-
Once logged in, you will be redirected to the dashboard where you can view and manage your bridges.
We welcome contributions to the Beeper Dashboard project. To contribute, follow these steps:
-
Fork the repository on GitHub.
-
Create a new branch for your feature or bugfix:
git checkout -b my-feature-branch
-
Make your changes and commit them with a descriptive commit message:
git commit -am "Add new feature"
-
Push your changes to your forked repository:
git push origin my-feature-branch
-
Create a pull request on the original repository and describe your changes in detail.
-
Wait for the project maintainers to review your pull request. They may request changes or provide feedback.
Thank you for contributing to the Beeper Dashboard project!