|
8 months ago | |
---|---|---|
guides | 9 months ago | |
routes | 8 months ago | |
server | 8 months ago | |
static | 8 months ago | |
views | 8 months ago | |
.drone.yml | 8 months ago | |
.gitignore | 8 months ago | |
.licenseignore | 8 months ago | |
CHANGELOG.md | 8 months ago | |
CODE_OF_CONDUCT.md | 8 months ago | |
Dockerfile | 8 months ago | |
LICENSE | 9 months ago | |
LICENSE.HEADER | 9 months ago | |
README.md | 8 months ago | |
favicon.svg | 9 months ago | |
index.js | 8 months ago | |
license-checker-config.json | 9 months ago | |
package-lock.json | 8 months ago | |
package.json | 8 months ago | |
template.env | 8 months ago |
Keyoxide is a modern, secure and decentralized platform to prove your online identity.
Self-hosting Keyoxide is an important aspect of the project. Users need to trust the Keyoxide instance they're using to reliably verify identities. Making Keyoxide itself decentralized means no one needs to trust a central server. If a friend or family member is hosting a Keyoxide instance, it becomes much easier to trust the instance!
The Docker container allows you to easily self-host the Keyoxide project. To get started, simply run:
docker run -d -p 3000:3000 keyoxide/keyoxide:stable
Keyoxide will now be available by visiting http://localhost:3000.
To add support for Twitter account verification, make a developer account, obtain a Bearer token and run:
docker run -d -p 3000:3000 -e "TWITTER_API_AUTH=XXXXXXXXXXXXXXXXXX" keyoxide/keyoxide:stable
To run Keyoxide using docker-compose, add the following snippet to your docker-compose.yml
:
keyoxide:
image: keyoxide/keyoxide:stable
ports:
- 3000:3000
environment:
- TWITTER_API_AUTH=XXXXXXXXXXXXXXXXXX
Anyone can contribute if they'd like! No need to be a programmer or technically-oriented for that matter.
Contributing to Keyoxide can happen in many forms:
Please note that this project has a Code of Conduct that all contributors agree to abide when participating.
To run Keyoxide locally on your machine for development:
node index.js
Keyoxide will now be available at https://localhost:3000