Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abhiyerra/stitchy
https://github.com/abhiyerra/stitchy
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/abhiyerra/stitchy
- Owner: abhiyerra
- Created: 2013-12-04T05:33:41.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-12T20:36:13.000Z (over 10 years ago)
- Last Synced: 2024-10-21T18:34:16.338Z (30 days ago)
- Language: Go
- Size: 150 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stitchy
## Running
Need the environment variables:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY## DB Table
create table photos (
id serial primary key,
user_id varchar(255) not null,
photo_url varchar(255) not null,
created_at timestamp default now()
);## API
- POST /v1/users/:user_id/photo ?url=
- POST /v1/users/:user_id/stitch
- GET /v1/users/:user_id/stitch
- Return { } - No Job
- Return { "status": "in-progress", "" }
- Return { "video_url": "" }