No description
  • CSS 53.6%
  • JavaScript 23.9%
  • PHP 14.3%
  • Twig 8.2%
Find a file
2021-09-13 06:12:07 -06:00
.github Create FUNDING.yml 2020-04-20 00:51:04 -06:00
database Finalize almost all the translation system. 2021-09-13 06:05:26 -06:00
public Improve translation system 2021-09-11 05:10:29 -06:00
resources 👀 2021-09-13 06:06:34 -06:00
routes Finalize almost all the translation system. 2021-09-13 06:05:26 -06:00
src Finalize almost all the translation system. 2021-09-13 06:05:26 -06: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 Add Redis dependency 2021-09-10 03:35:12 -06:00
composer.lock Update dependencies 2021-09-13 06:01:10 -06:00
config.example.php Allow for multiple domain names for a site 2021-09-13 06:00:17 -06:00
core.php Allow for multiple domain names for a site 2021-09-13 06:00:17 -06: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 Add command to change display name 2021-09-07 22:12:55 -06:00
utility.php Improve translation system 2021-09-11 05:10:29 -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.