No description
  • CSS 53.6%
  • JavaScript 23.9%
  • PHP 14.3%
  • Twig 8.2%
Find a file
2023-07-09 11:48:06 -07:00
.github chore: More supporting links 2022-08-06 18:46:28 -06:00
database Finalize almost all the translation system. 2021-09-13 06:05:26 -06:00
public Make account settings page functional! 2021-09-14 05:34:24 -06:00
resources Added Italian translations 2022-06-22 08:57:56 +02:00
routes feat: activity feed stuff 2022-03-14 03:03:33 -07:00
src fix: Make image upload actually work 2023-07-09 11:48:06 -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 feat: Move image/avatar uploading out of cloudinary 2023-07-03 15:52:37 -07:00
composer.lock feat: Move image/avatar uploading out of cloudinary 2023-07-03 15:52:37 -07:00
config.example.php feat: Move image/avatar uploading out of cloudinary 2023-07-03 15:52:37 -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 Finish translation system 2021-09-14 05:00:23 -06:00
utility.php Finish translation system 2021-09-14 05:00:23 -06: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.