Browse Source

Oct 01: [UPDT] Updated Index 'auto_database_backup'

pull/346/head
Cybrosys Technologies 7 months ago
parent
commit
c27579ef2d
  1. 2
      auto_database_backup/__manifest__.py
  2. 4
      auto_database_backup/doc/RELEASE_NOTES.md
  3. BIN
      auto_database_backup/static/description/assets/screenshots/onedrive4.png
  4. 22
      auto_database_backup/static/description/index.html
  5. 1
      auto_database_backup/wizard/dropbox_auth_code.py

2
auto_database_backup/__manifest__.py

@ -28,7 +28,7 @@
'summary': 'Odoo Database Backup, Automatic Backup, Database Backup, Automatic Backup,Database auto-backup, odoo backup'
'google drive, dropbox, nextcloud, amazon S3, onedrive or '
'remote server, Odoo18, Backup, Database, Odoo Apps',
'description': 'Odoo Database Backup, Database Backup, Automatic Backup, automatic database backup, odoo18, odoo apps,backup, automatic backup,odoo18 automatic database backup,backup google drive,backup dropbox, backup nextcloud, backup amazon S3, backup onedrive',
'description': 'Odoo Database Backup, Database Backup, Automatic Backup, automatic database backup, odoo18, odoo apps,backup, automatic backup,odoo17 automatic database backup,backup google drive,backup dropbox, backup nextcloud, backup amazon S3, backup onedrive',
'author': "Cybrosys Techno Solutions",
'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions',

4
auto_database_backup/doc/RELEASE_NOTES.md

@ -1,7 +1,7 @@
## Module <auto_database_backup>
#### 26.08.2024
#### 30.09.2024
#### Version 18.0.1.0.0
#### ADD
- Initial commit for auto_database_backup
- Initial commit for Automatic Database Backup To Local Server, Remote Server, Google Drive, Dropbox, Onedrive, Nextcloud and Amazon S3 Odoo18.

BIN
auto_database_backup/static/description/assets/screenshots/onedrive4.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

22
auto_database_backup/static/description/index.html

@ -594,7 +594,7 @@
</div>
<div class="col-md-12 mb-4">
<p style="font-weight:400; font-size:16px; line-height:150%; text-align:center; color:var(--text-color-light)">
You'll need to create a new Google API project and enabling the Google Drive API, Go to the Google API Console and log into your account. While creating the project, for the Redirect URI restrictions, copy your Odoo database URI followed by /google_drive/authentication. Example:
You'll need to create a new Google API project from <a href="https://console.cloud.google.com/"> Google Cloud console</a> and enabling the Google Drive API, Go to the Google API Console and log into your account. While creating the project, for the Redirect URI restrictions, copy your Odoo database URI followed by /google_drive/authentication. Example:
</p>
</div>
<div class="col-md-12 text-center">
@ -722,7 +722,7 @@
</div>
<div class="col-md-12 mb-4">
<p style="font-weight:400; font-size:16px; line-height:150%; text-align:center; color:var(--text-color-light)">
To get the app key and secret key go to the App Console. Create a new app
To get the app key and secret key go to the <a href="https://www.dropbox.com/developers" >App Console </a>. Create a new app
</p>
</div>
<div class="col-md-12 text-center">
@ -822,7 +822,7 @@
</div>
<div class="col-md-12 mb-4">
<p style="font-weight:400; font-size:16px; line-height:150%; text-align:center; color:var(--text-color-light)">
Select Backup Destination as OneDrive. Enter the App key and App secret. you'll need to register a new app in the Microsoft Azure portal. While registering the app for the Redirect URI restrictions, copy your Odoo database URI followed by /onedrive/authentication. Example:
Select Backup Destination as <a href="portal.azure.com">OneDrive.</a> Enter the App key and App secret. you'll need to register a new app in the Microsoft Azure portal. While registering the app for the Redirect URI restrictions, copy your Odoo database URI followed by /onedrive/authentication. Example:
</p>
</div>
<div class="col-md-12 text-center">
@ -857,6 +857,22 @@
style="min-height: 1px;">
</div>
</div>
<div class="col-md-12 mb-4" style="margin-top: 25px;">
<p style="font-weight:400; font-size:16px; line-height:150%; text-align:center; color:var(--text-color-light)">
Add Scope in the Expose an API page.
</p>
</div>
<div class="col-md-12 text-center">
<div class="d-inline-block p-3 shadow-sm"
style="background-color:#fff; border-radius:10px">
<img alt="" class="img-fluid"
loading="lazy"
src="./assets/screenshots/onedrive4.png"
style="min-height: 1px;">
</div>
</div>
<div class="col-md-12 mb-4" style="margin-top: 25px;">
<p style="font-weight:400; font-size:16px; line-height:150%; text-align:center; color:var(--text-color-light)">
Get OneDrive folder ID, where need to store the backup files.

1
auto_database_backup/wizard/dropbox_auth_code.py

@ -19,7 +19,6 @@
# If not, see <http://www.gnu.org/licenses/>.
#
###############################################################################
from werkzeug import urls
from odoo import api, fields, models, _
GOOGLE_AUTH_ENDPOINT = 'https://accounts.google.com/o/oauth2/auth'

Loading…
Cancel
Save