Skip to content

Simple application for generating collages from images

License

Notifications You must be signed in to change notification settings

dyachoksa/collage-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Collage Generator Project

Structure

  • backend - Python REST backend
  • frontend - React/TypeScript Web frontend

Development

Backend

Start development server:

cd backend
uvicorn --port 5000 --reload collages:app

Application uses alembic tool to work with database migrations. Although it's possible to use different database engines the code itself heavily depends on PostgreSQL and its features, such as arrays and enums.

cd backend
source .venv/bin/activate

# create migration
alembic revision -m <message> --autogenerate

# migrate
alembic upgrade head

About

Simple application for generating collages from images

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published