No description
  • CSS 53.6%
  • JavaScript 23.9%
  • PHP 14.3%
  • Twig 8.2%
Find a file
2023-10-31 22:47:30 -07:00
.github chore: More supporting links 2022-08-06 18:46:28 -06:00
database fix: remove some primary indices as they'll cause data loss if migrated as is 2023-10-31 15:53:14 -07:00
public feat: make tags and text work for titles 2023-10-31 12:45:12 -07:00
resources chore: fix favorites on profile to community class 2023-10-31 20:08:58 -07:00
routes feat: basic api handling code 2023-10-29 20:52:12 -07:00
src chore: remove redesign community index code for now 2023-10-31 22:47:30 -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 chore: change the charset used for new installs 2023-10-29 20:55:57 -07:00
core.php feat: basic api handling code 2023-10-29 20:52:12 -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.