mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
job settings
This commit is contained in:
parent
d450684144
commit
dbc5a28eef
@ -15,4 +15,9 @@
|
|||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Configuration" />
|
<Reference Include="System.Configuration" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Update="Settings.job">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
22
src/EventsProcessor/Settings.job
Normal file
22
src/EventsProcessor/Settings.job
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
|
||||||
|
// Examples:
|
||||||
|
|
||||||
|
// Runs every minute
|
||||||
|
// "schedule": "0 * * * * *"
|
||||||
|
|
||||||
|
// Runs every 15 minutes
|
||||||
|
// "schedule": "0 */15 * * * *"
|
||||||
|
|
||||||
|
// Runs every hour (i.e. whenever the count of minutes is 0)
|
||||||
|
// "schedule": "0 0 * * * *"
|
||||||
|
|
||||||
|
// Runs every hour from 9 AM to 5 PM
|
||||||
|
// "schedule": "0 0 9-17 * * *"
|
||||||
|
|
||||||
|
// Runs at 9:30 AM every day
|
||||||
|
// "schedule": "0 30 9 * * *"
|
||||||
|
|
||||||
|
// Runs at 9:30 AM every week day
|
||||||
|
// "schedule": "0 30 9 * * 1-5"
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user