-
Notifications
You must be signed in to change notification settings - Fork 112
Add C# plugin specific restrictions to documentation #817
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: feature/csharp_plugin
Are you sure you want to change the base?
Add C# plugin specific restrictions to documentation #817
Conversation
CodeCompass C# plugin at the moment only can use postgres
Updated readme for postgresql usage.
| docker exec -it postgres_container psql -U postgres -d postgres -c "CREATE USER your_user WITH PASSWORD 'your_password';" | ||
|
|
||
| # 2. Adunk neki Superuser jogot (hogy biztosan tudjon adatbázist írni/olvasni) | ||
| docker exec -it postgres_container psql -U postgres -d postgres -c "ALTER USER your_user WITH SUPERUSER;" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this could be a single command with the above one.
| # 1. Create user "your_user" with password "your_password" | ||
| docker exec -it postgres_container psql -U postgres -d postgres -c "CREATE USER your_user WITH PASSWORD 'your_password';" | ||
|
|
||
| # 2. Adunk neki Superuser jogot (hogy biztosan tudjon adatbázist írni/olvasni) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Translate to English :)
|
Suggestion to move the C# specific restrictions (e.g. no Sqlite support) to separate markdown file or separate section in backend user guide. Further PRs will have the goal to remove these restrictions. |
|
@LakatosMark1 Please update the PR as requested. |
The dockerfile has been updated to use postgres and the Docker readme has been updated to include the postgres container.