https://github.com/bluecolor/octopus
Open source task scheduler with dependency management
https://github.com/bluecolor/octopus
akka cron java octopus pug quartz scala scheduler slack spring vue webpack
Last synced: 10 months ago
JSON representation
Open source task scheduler with dependency management
- Host: GitHub
- URL: https://github.com/bluecolor/octopus
- Owner: bluecolor
- Created: 2017-06-26T17:41:57.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-01T19:28:29.000Z (almost 8 years ago)
- Last Synced: 2025-04-04T00:51:06.255Z (about 1 year ago)
- Topics: akka, cron, java, octopus, pug, quartz, scala, scheduler, slack, spring, vue, webpack
- Language: JavaScript
- Homepage: https://bluecolor.github.io/octopus/
- Size: 404 MB
- Stars: 15
- Watchers: 1
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Octopus - Open Source Task Scheduler
### Getting started with minimal configuration
- Download the latest release from [here](https://github.com/bluecolor/octopus/releases)
- un-compress the archive file
- `cd octopus`
- `./octopus.sh`
- create system user from the `octopus shell`:
```
ssh user@localhost -p 2000
# enter password
su -h # help for su command
# example
# su -m c -u system -p system -n system -e system@bluecolor.io
# username: system password: system
```
- open app in browser and login with `system user` that you created in previous step.
```
http://localhost:9090
```
### Configuration
- You can change the repository to use a different `db` by changing the parameters in `application.properties`
- Configure `octopus.shell` using the `application.properties`
### Building
- `git clone https://github.com/bluecolor/octopus`
- `cd` into cloned repo folder
- run `./build.sh`
- check out the `dist` folder
### Developers
- Run backend by;
```
cd octopus/backend
gradle bootrun
```
- Start a dev server for frontend with;
```
cd octopus/frontend
npm install
npm run dev
```
### Documentation
You can find more info [here](https://bluecolor.github.io/octopus/)