This is open source application used to help parents to communicate and organize when they want to switch places in kindergartens.
There are currently no vacancies, so when they want to move, they get an answer from the authorities: all places are filled.
They currently use FB groups and advertisements on kindergarten doors, which is not effective
Using this app, they can easily log in using their mobile phone or email, select their current location and wishes, and wait for a notification.
Repository url:
https://github.com/trkin/kindergarten-exchange
It is using Rails, Tailwind, Neo4g graph database. It requires:
To run locally you should run yarn
git clone git@github.com:trkin/kindergarten-exchange.git
cd kindergarten-exchange
yarn
bundle
bin/setup
To start the server you can run single command
bin/dev
or you can run three commands (find them in Procfile)
bin/rails server
yarn build --watch
yarn build:css --watch
and you should be able to open site on http://localhost:3000/
Basic models are:
User
email of registered userKindergarten
name and location for kindergartenWish
is Kindergarten User relation, ie current location with groupWishKindergarten
is Wish Kindergarten relation, ie target kindergartenTo create database and add your user as postgresql superuser you can follow TODO: https://github.com/trkin/dev.trk.in.rs/issues/8
TODO: https://github.com/trkin/kindergarten-exchange/issues/3
TODO: https://github.com/trkin/kindergarten-exchange/issues/9