No description
  • CSS 53.6%
  • JavaScript 23.9%
  • PHP 14.3%
  • Twig 8.2%
Find a file
2023-10-29 11:33:33 -07:00
.github chore: More supporting links 2022-08-06 18:46:28 -06:00
database feat: add title id table for communities 2023-10-29 11:33:33 -07:00
public Make account settings page functional! 2021-09-14 05:34:24 -06:00
resources Merge pull request #59 from Jao154/patch-2 2023-10-26 16:10:58 -07:00
routes feat: activity feed stuff 2022-03-14 03:03:33 -07:00
src feat: create new command to make a new migration 2023-10-27 17:55:14 -07:00
store Initial commit 2018-11-29 13:17:19 -07:00
.gitattributes Initial commit 2018-11-29 13:17:19 -07:00
.gitignore Added Turkish Translation && 2020-05-04 11:19:45 +03:00
.styleci.yml Initial commit 2018-11-29 13:17:19 -07:00
composer.json chore: update dependencies 2023-10-26 11:30:52 -07:00
composer.lock chore: update dependencies 2023-10-26 11:30:52 -07:00
config.example.php feat: allow changing redis host config from config 2023-10-26 00:49:45 -07:00
core.php feat: Move image/avatar uploading out of cloudinary 2023-07-03 15:52:37 -07:00
LICENSE Initial commit 2018-11-29 13:17:19 -07:00
README.md Update README to mention the new requirements 2021-09-13 06:12:07 -06:00
server.php Initial commit 2018-11-29 13:17:19 -07:00
topia feat: create new command to make a new migration 2023-10-27 17:55:14 -07:00
utility.php feat: create new command to make a new migration 2023-10-27 17:55:14 -07:00

rverse2

Requirements

  • PHP 8.0.0 (or greater) or an equivalent environment
  • MySQL 5.7 is recommended, you can use any database engine compatible with illuminate/database in theory though.
  • Composer
  • Redis

Installing

Backend

Copy config.example.php, set everything up to your liking (database is most important). I'd also recommend setting show_errors to true for development. Then run the following commands in the root.

$ composer install
$ php topia db:install
$ php topia db:migrate
$ php topia db:setup

After that you can either use $ php topia serve to use the built in development server or serve the public folder through your webserver of choice.