Skip to content

Web app based on symfony, social platform with profiles and static refreshing. Project is no longer mainained because of Submit2

Notifications You must be signed in to change notification settings

yanushevitz/submit-web-app

Repository files navigation

submit

submit.

Social platform created with Symfony as project to learn MVC framework.

What works?

  • login/register system (Symfony component)
  • E-mail verification (Symfony component)
  • creating/deleting post/comment
  • editing profile data

What doesn't work?

  • cookies issue, after any action loggs out
  • page reload is static

set up app

first pull code from repo

gh repo clone yanushevitz/submit-web-app
cd submit-web-app

then set up containers

sudo docker-compose up -d --build

then create database

sudo docker exec -it submit_db bash
mysql -p # there you will need to type password set in docker-compose.yml file
create database submit
exit

then install dependencies, run webpack and run migrations

sudo docker exec -it submit_app bash
composer install
npm i
npm run build
cd bin
php console doctrine:migrations:migrate

and this should be good enough

photos

1 2 3 4