Compare commits

...

3 Commits

Author SHA1 Message Date
standardci
ad8a07b003 chore(release): publish
- @standardnotes/auth-server@1.1.0-alpha.1
 - @standardnotes/scheduler-server@1.1.0-alpha.9
2022-06-22 12:43:19 +00:00
Karol Sójko
923fe2a19b Merge branch 'develop' of github.com:standardnotes/server into develop 2022-06-22 14:42:31 +02:00
Karol Sójko
f3c6fff20f fix: docker entrypoint for auth 2022-06-22 14:41:56 +02:00
5 changed files with 20 additions and 10 deletions

View File

@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0-alpha.1](https://github.com/standardnotes/auth/compare/@standardnotes/auth-server@1.1.0-alpha.0...@standardnotes/auth-server@1.1.0-alpha.1) (2022-06-22)
### Bug Fixes
* docker entrypoint for auth ([f3c6fff](https://github.com/standardnotes/auth/commit/f3c6fff20f98a9b23b7221e59e6853255f54a369))
# 1.1.0-alpha.0 (2022-06-22)
### Features

View File

@@ -6,42 +6,42 @@ COMMAND=$1 && shift 1
case "$COMMAND" in
'start-local' )
echo "Starting Web..."
yarn start:local
yarn workspace @standardnotes/auth-server start:local
;;
'start-web' )
echo "Starting Web..."
yarn start
yarn workspace @standardnotes/auth-server start
;;
'start-worker' )
echo "Starting Worker..."
yarn worker
yarn workspace @standardnotes/auth-server worker
;;
'email-daily-backup' )
echo "Starting Email Daily Backup..."
yarn daily-backup:email
yarn workspace @standardnotes/auth-server daily-backup:email
;;
'email-weekly-backup' )
echo "Starting Email Weekly Backup..."
yarn weekly-backup:email
yarn workspace @standardnotes/auth-server weekly-backup:email
;;
'dropbox-daily-backup' )
echo "Starting Dropbox Daily Backup..."
yarn daily-backup:dropbox
yarn workspace @standardnotes/auth-server daily-backup:dropbox
;;
'google-drive-daily-backup' )
echo "Starting Google Drive Daily Backup..."
yarn daily-backup:google_drive
yarn workspace @standardnotes/auth-server daily-backup:google_drive
;;
'one-drive-daily-backup' )
echo "Starting One Drive Daily Backup..."
yarn daily-backup:one_drive
yarn workspace @standardnotes/auth-server daily-backup:one_drive
;;
* )

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/auth-server",
"version": "1.1.0-alpha.0",
"version": "1.1.0-alpha.1",
"engines": {
"node": ">=16.0.0 <17.0.0"
},

View File

@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0-alpha.9](https://github.com/standardnotes/server/compare/@standardnotes/scheduler-server@1.1.0-alpha.8...@standardnotes/scheduler-server@1.1.0-alpha.9) (2022-06-22)
**Note:** Version bump only for package @standardnotes/scheduler-server
# [1.1.0-alpha.8](https://github.com/standardnotes/server/compare/@standardnotes/scheduler-server@1.1.0-alpha.7...@standardnotes/scheduler-server@1.1.0-alpha.8) (2022-06-22)
### Features

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/scheduler-server",
"version": "1.1.0-alpha.8",
"version": "1.1.0-alpha.9",
"engines": {
"node": ">=16.0.0 <17.0.0"
},