This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Text file importer for Memos | |
| # https://www.usememos.com | |
| # | |
| # This script imports text files (preferably in Markdown format) into your Memos instance. | |
| # | |
| # Provide the instance's URL and acess token, and it will create a new memo for each matching | |
| # file in the source folder and subfolders. | |
| # | |
| # This script is designed to work with Python's 3.10 (or later) standard library. There's |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Select the appropriate code based on the Memos version you are currently running. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3.0" | |
| name: adminer | |
| services: | |
| adminer: | |
| image: adminer | |
| environment: | |
| ADMINER_DEFAULT_DRIVER: sqlite # server=mysql, pgsql, sqlite, sqlite2, oracle, mssql, mongo, elastic | |
| ADMINER_DEFAULT_DB: /data/database.db # path to SQLite database or DBMS database name | |
| ADMINER_DEFAULT_SERVER: # DBMS IP or hostname |