https://github.com/blacklanternsecurity/credshed-api
REST API for Credshed
https://github.com/blacklanternsecurity/credshed-api
Last synced: 10 months ago
JSON representation
REST API for Credshed
- Host: GitHub
- URL: https://github.com/blacklanternsecurity/credshed-api
- Owner: blacklanternsecurity
- License: gpl-3.0
- Created: 2020-01-14T00:44:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-28T16:05:26.000Z (over 5 years ago)
- Last Synced: 2025-09-10T21:33:30.169Z (10 months ago)
- Language: Python
- Size: 43.9 KB
- Stars: 7
- Watchers: 4
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# credshed-api
REST API for Credshed
## Deployment
* Clone repo recursively
~~~
$ git clone --recursive https://github.com/blacklanternsecurity/credshed-api && cd credshed-api
~~~
* Follow instructions in `./lib/credshed/README.md` to set up the credshed mongo backend
* (Optional) Build the Vue.js frontend
~~~
$ cd lib/credshed-gui
# install node.js
$ apt install npm
# install dependencies
$ npm install
# test, if you want
$ npm run serve
# build for production
$ npm run build
~~~
* Bring up the API via docker-compose
NOTE: make sure you're back inside the `credshed-api` directory
~~~
$ docker-compose up
~~~