-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Set default DB host to "mysql", and add default DB user as "root"
- Loading branch information
1 parent
60ff6a0
commit 48e1b9d
Showing
4 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Build and Push Container to GitHub Container Registry | ||
|
||
on: | ||
pull: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build_and_push: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Build and Push Container to ghcr.io | ||
uses: GlueOps/github-actions-build-push-containers@v0.3.7 |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# QSyncBackend | ||
QSyncBackend is a simple backend written in Python for syncing files between two directories. It is designed to be used with QSyncUi. | ||
|
||
## Run from source | ||
1. Clone the repository | ||
2. Install the requirements using `pip install -r requirements.txt` | ||
3. Create a `.env` file in the root directory of the repository with .env.example as a template | ||
4. Run the backend using `gunicorn -w 4 -b 127.0.0.1:8080 app:app` | ||
|
||
## Run from Docker |