All Projects → sikrvault → Sikr

sikrvault / Sikr

Licence: other
Sikre is a high-security backend API to store your passwords and sensitive data securely (like SSH keys and SSL certificates).

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Sikr

Rails Handbook
Describing the development process used by the Infinum Rails Team.
Stars: ✭ 738 (+2206.25%)
Mutual labels:  backend
Local Web Server
A lean, modular web server for rapid full-stack development.
Stars: ✭ 916 (+2762.5%)
Mutual labels:  backend
Awesome Scalability
The Patterns of Scalable, Reliable, and Performant Large-Scale Systems
Stars: ✭ 36,688 (+114550%)
Mutual labels:  backend
Rust Web Developer Roadmap
Roadmap to becoming a Rust Web Developer in 2021
Stars: ✭ 749 (+2240.63%)
Mutual labels:  backend
Template Sailsjs Vue
Two independent projects (BackEnd and FrontEnd) working as one. A Sails application.
Stars: ✭ 16 (-50%)
Mutual labels:  backend
Gloebals
Integriert global verfügbare Datenfelder und Übersetzungen
Stars: ✭ 26 (-18.75%)
Mutual labels:  backend
Aws Boilerplate
Opinionated full stack web app's boilerplate, ready to be deployed to AWS platform.
Stars: ✭ 682 (+2031.25%)
Mutual labels:  backend
Laravel Realworld Example App
Exemplary real world backend API built with Laravel
Stars: ✭ 954 (+2881.25%)
Mutual labels:  backend
Zato
ESB, SOA, REST, APIs and Cloud Integrations in Python
Stars: ✭ 889 (+2678.13%)
Mutual labels:  backend
Resume
( Software Engineer, Back-End developer (.NET, .NET CORE))
Stars: ✭ 13 (-59.37%)
Mutual labels:  backend
Symfony 5 Es Cqrs Boilerplate
Symfony 5 DDD ES CQRS backend boilerplate
Stars: ✭ 759 (+2271.88%)
Mutual labels:  backend
Goyave
🍐 Elegant Golang REST API Framework
Stars: ✭ 811 (+2434.38%)
Mutual labels:  backend
Hotseat Api
Rest API of a barber shop application - Built with Express, TypeORM and Postgres
Stars: ✭ 27 (-15.62%)
Mutual labels:  backend
Hospitalrun Server
Backend for HospitalRun
Stars: ✭ 737 (+2203.13%)
Mutual labels:  backend
Fusio
Open source API management platform
Stars: ✭ 946 (+2856.25%)
Mutual labels:  backend
Repractise
RePractise
Stars: ✭ 695 (+2071.88%)
Mutual labels:  backend
Treestructure
Gibt die Seitenstruktur im REDAXO-Backend als Baum aus
Stars: ✭ 26 (-18.75%)
Mutual labels:  backend
Fdbswift
FoundationDB client for Swift
Stars: ✭ 32 (+0%)
Mutual labels:  backend
Mrseedbox
[unmaintained] A Containerized Seedbox with Embedded Media Player
Stars: ✭ 30 (-6.25%)
Mutual labels:  backend
Falko Api
📈 Falko API: Plataform for agile projects management 📊
Stars: ✭ 13 (-59.37%)
Mutual labels:  backend

Sikr

Build Status Coverage Status Docs Status

Please note: Sikr is in early development stages, it's not recommended to use it in production yet.

Sikre is a high-security backend API to store your passwords and sensitive data securely (like SSH keys and SSL certificates).

It's made with paranoid security in mind, that means the server will never know anything about the data you uploaded, it's going to get encrypted so there is no way for the person managing the instance or the server itself to decrypt or read your information.

This is just the backend part, so unless you are <insert genius name here> you will probably need a frontend to work with. You can use the default sikr-frontend project.

Who uses it?

The official password storage service called Sikr (as Sikre/Sikr in Danish, to ensure, protect) is going to use it. It's still on development (tied to the project) but you can reach it on http://sikr.io and http://api.sikr.io

What does it use?

Requirements

  • A GNU/Linux server
  • Python >= 3.6 (tested up to 3.7)
  • A valid SSL certificate (not necessary if DEBUG=True)

Please note that this project won't run on Python 2.7.x series or Python 3.x below 3.6

How to install

To install please follow these steps (these instructions use Pipenv, if you don't know what that is, please check it here)

  • Install the dependencies

    $ cd <your_sikr_git_folder>

    $ pipenv install

  • Activate the virttual environment

    $ pipenv shell

That should install and lock all the necessary requirements. If you're confused about how pipenv works, let's just say it takes care of the creation, isolation and activation of the correct virtual environment on its own, you don't need to do anything.

How to run

There is two ways of running the application. One is the main wsgi application that will serve all the requests. The other is running it as a management script.

Run as service

To run it for testing you can use gunicorn or uwsgi or any other wsgi interface. To run it with uwsgi for example:

$ uwsgi --http :8080 --wsgi-file app.py --callable api

Now you can visit your application going to localhost:8080 in your browser. Please remember that this is the backend, so it will only reply to the API endpoints, you will not be able to see anything else.

There is a test endpoint while in debug mode which you can visit in: localhost:8080/test_api

Run as management script

To run the application as a management script you just need to invoke it from python:

$ python app.py

This script contains multiple actions that take care of the service. At the moment of writing this document these are the functions:

  • syncdb Creates the database schema necessary to run the application
  • generate Fills the database with random data. This command only runs if DEBUG=True

License and copyright

This project is licensed under the MIT license. Copyright Esmorga Software and contributors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].