{"id":13669156,"url":"https://github.com/Hifone/Hifone","last_synced_at":"2025-04-27T01:32:42.093Z","repository":{"id":217580046,"uuid":"60775510","full_name":"Hifone/Hifone","owner":"Hifone","description":"A free, open-source, self-hosted forum software based on the Laravel PHP Framework. QQ群：656868","archived":false,"fork":false,"pushed_at":"2017-12-12T16:03:42.000Z","size":3691,"stargazers_count":657,"open_issues_count":25,"forks_count":123,"subscribers_count":38,"default_branch":"1.0","last_synced_at":"2024-11-11T05:39:24.332Z","etag":null,"topics":["bbs","forum","hifone","laravel","php"],"latest_commit_sha":null,"homepage":"https://zendea.com","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Hifone.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-06-09T13:08:05.000Z","updated_at":"2024-10-24T04:18:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"8517b2eb-20f8-4401-af78-a18601e2849f","html_url":"https://github.com/Hifone/Hifone","commit_stats":null,"previous_names":["hifone/hifone"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hifone%2FHifone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hifone%2FHifone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hifone%2FHifone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hifone%2FHifone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hifone","download_url":"https://codeload.github.com/Hifone/Hifone/tar.gz/refs/heads/1.0","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251077102,"owners_count":21532607,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bbs","forum","hifone","laravel","php"],"created_at":"2024-08-02T08:01:04.372Z","updated_at":"2025-04-27T01:32:37.048Z","avatar_url":"https://github.com/Hifone.png","language":"PHP","funding_links":[],"categories":["PHP"],"sub_categories":[],"readme":"## Hifone\n\n[![StyleCI](https://styleci.io/repos/60775510/shield)](https://styleci.io/repos/60775510/)\n[![Build Status](https://img.shields.io/travis/Hifone/Hifone/master.svg?style=flat-square)](https://travis-ci.org/Hifone/Hifone)\n[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)\n\n![Screenshot](http://hifone.com/images/screenshot.png)\n\nHifone is a free, open-source, self-hosted forum software based on the Laravel PHP Framework.\n\n## Features\n\nThis package is currently in (very-)alpha stage, so all of the following features may or may not work yet. However, feel free to post issues and features requests [here](https://github.com/Hifone/Hifone/issues) . We will try to fix and improve the package as fast as we can based on your help!\n\n* Fast and simple\n* Beautiful and responsive\n* Register \u0026 Login via OAuth\n* Image upload\n* Avatars\n* Credits\n* Roles \u0026 Permissions\n* Notifications\n* Markdown \u0026 Emoj\n* Tags\n* Advertisements\n* RSS Feeds\n* Localization: language files, time zone and UTF-8 support\n* Pjax support\n\n## Requirements\n\nThere are a few things that you will need to have set up in order to run Gitamin:\n\n- A web server: **Nginx**, **Apache** (with mod_rewrite), or **Lighttpd**\n- **PHP 5.6.4+** with the following extensions: mbstring, pdo_mysql\n- **MySQL** or **PostgreSQL**\n- **Composer**\n\n## Installation\n\nBy default Hifone comes with a .env.example file. You'll need to rename this file to just .env regardless of what environment you're working on.\n\nIf you're using SQLite then your .env file should not contain a DB_HOST key. You'll also need to touch ./database/hifone.sqlite and give it the required permissions.\n\nDirectories within the `storage` and the `bootstrap/cache` directories should be writable by your web server or Hifone will not run. \n\n\n### Step 1: Shell\n\n```shell\ngit clone https://github.com/Hifone/Hifone\ncd Hifone\n\ncp .env.example .env\nvi .env  # write database settings\n\ncomposer install --no-dev -o\n\nphp artisan hifone:install\n\nchmod -R 777 storage\nchmod -R 777 bootstrap/cache\nchmod -R 777 public/uploads\n```\n\nIf you have problems to open the Page, enter the Following:\n```shell\nphp artisan vendor:publish\n```\n\n### Step 2: Browser\n\nNow go to http://your_site_domain/ and have fun!\n\n## Installing Hifone with Docker\n\n```shell\n$ git clone https://github.com/Hifone/Docker.git hifone-docker\n$ cd hifone-docker\n$ docker build -t hifone --rm .\n$ docker run -it --rm -p 0.0.0.0:8081:80 hifone\n$ /run.sh\n```\nNow go to http://127.0.0.1:8081 (linux) or http://192.168.99.100:8081 (mac) and have fun!\n\nYou can find more information at [Install Hifone](https://github.com/Hifone/Docker/blob/master/README.md)\n\n### Additional Settings\nOn the Admin Panel you can add some additional Settings\n```\nmeta_author - Set Metadata for Authors\nmeta_keywords - Set Metadata for Keywords\nfooter_html - Write some HTML stuff for Footer\nnew_thread_dropdowns - With this, you can add some DropDown Items for the \"New Thread\" Button\nsite_about - This is for Adding a Subtitle for the Website\n```\n\n## Upgrading\n\n```shell\nphp artisan hifone:update\n```\n\n## Development\n\nThese extra dependencies are required to develop Hifone:\n\n- Node.js\n- Bower\n- Gulp\n\n```shell\nnpm install\nbower install\ngulp\n```\n\nIf you're making a lot of changes, you'll find that running `gulp watch` will really help you out!\n\n## Demo\n\n[Hifone website](http://hifone.com/).\n\n## License\n\nHifone is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHifone%2FHifone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FHifone%2FHifone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FHifone%2FHifone/lists"}