Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
indicators-parser-saas
backend
Commits
ab38d9bd
Verified
Commit
ab38d9bd
authored
2 years ago
by
Власов Иван Юрьевич
Browse files
Options
Download
Patches
Plain Diff
Added deployment instructions and env settings list
parent
39ff268e
master
No related merge requests found
Pipeline
#98626
passed with stage
in 1 minute and 4 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+40
-3
README.md
with
40 additions
and
3 deletions
+40
-3
README.md
+
40
−
3
View file @
ab38d9bd
# Backend



Monolithic backend of IoC scraper service
## Deploy
`//TODO: Add deploy instructions here`
### Native deployment
1.
Install python 3.10
2.
Clone repository
```
bash
git clone https://git.miem.hse.ru/indicators-parser-saas/backend.git
```
3.
Install dependencies
```
bash
pip
install
-r
requirements.txt
```
4.
Set enviroment variables in .env file
5.
Run development server
```
bash
python main.py
```
### Docker deployment
1.
Install docker
2.
Save enviroment variables in .env file
3.
Run docker image
```
bash
docker run
-d
--env-file
.env
-p
8000:8000
--name
backend registry.miem.hse.ru/indicators-parser-saas/backend
```
## Settings
`//TODO: Add settings here`
|
**Name**
|
**Description**
|
**Is required?**
|
|:----------------------:|:-------------------------------------------------------------------------------------------------------------------:|:----------------:|
|
`DB_URI`
| Database
[
URL
](
https://tortoise.github.io/databases.html
)
| ✅ |
|
`GITHUB_CLIENT_ID`
|
[
GitHub OAuth
](
https://docs.github.com/en/developers/apps/building-oauth-apps/authorizing-oauth-apps
)
client id | ✅ |
|
`GITHUB_CLIENT_SECRET`
|
[
GitHub OAuth
](
https://docs.github.com/en/developers/apps/building-oauth-apps/authorizing-oauth-apps
)
client secret | ✅ |
|
`JWK_KEY_FILE`
| RSA Private and Public key in Json Web Key format (key.jwk by default) | |
|
`S3_SECRET_KEY`
| AWS S3 or S3 like storage static key secret | ✅ |
|
`S3_ACCESS_KEY`
| AWS S3 or S3 like storage static access key | ✅ |
|
`S3_REGION_NAME`
| AWS S3 or S3 like storage region name | ✅ |
|
`S3_ENDPOINT_URL`
| AWS S3 or S3 like storage endpoint URL | ✅ |
|
`S3_REPORTS_FOLDER`
| AWS S3 or S3 like storage reports base path | |
|
`S3_BASE_URL`
| Base URL for generating not signed URLs | ✅ |
## Documentation
`//TODO: Add documentation here`
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets