Skip to content

Latest commit

 

History

History
61 lines (43 loc) · 1.12 KB

README.md

File metadata and controls

61 lines (43 loc) · 1.12 KB

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