No description
  • CSS 53.6%
  • JavaScript 23.9%
  • PHP 14.3%
  • Twig 8.2%
Find a file
2024-01-26 01:29:56 -07:00
.github chore: More supporting links 2022-08-06 18:46:28 -06:00
database feat: add extra info to user tables, so it can be used in api 2024-01-02 22:44:56 -07:00
public chore: Change jQuery and Olv variables to their deobfuscated versions 2024-01-02 22:53:24 -07:00
resources feat: add base community/favorite pages for wii u 2024-01-26 01:29:56 -07:00
routes feat: add base community/favorite pages for wii u 2024-01-26 01:29:56 -07:00
src feat: add base community/favorite pages for wii u 2024-01-26 01:29:56 -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 Add xml dependency 2024-01-02 20:03:18 -07:00
composer.lock chore: update dependencies 2024-01-02 20:14:05 -07:00
config.example.php chore: change the charset used for new installs 2023-10-29 20:55:57 -07:00
core.php fix: make api use the web template set to silence errors 2024-01-02 20:04:08 -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: add local title id calculation code 2023-10-31 03:37:56 -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.