https://github.com/team-durumi/moy-project
이슈 관리 도구 - 모이(자)
https://github.com/team-durumi/moy-project
Last synced: 2 months ago
JSON representation
이슈 관리 도구 - 모이(자)
- Host: GitHub
- URL: https://github.com/team-durumi/moy-project
- Owner: team-durumi
- License: mit
- Created: 2022-05-04T05:23:48.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-24T08:17:15.000Z (almost 3 years ago)
- Last Synced: 2025-01-02T00:43:06.207Z (4 months ago)
- Language: PHP
- Size: 114 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# moy-project
프로젝트 이슈 관리 도구 - 모이(자)
- 사용자 user
- 프로젝트 project
- 이슈 issue## development
```bash
# Install dependencies for postgresql.
$ sudo apt-get -y install php-pgsql postgresql-contrib
# Install pg_trgm postgresql extention https://dba.stackexchange.com/a/165301
$ psql -c "CREATE EXTENSION pg_trgm;"
# Check dependencies.
$ php -v && sqlite3 -version && composer -V && psql -V && php -m | grep pdo_pgsql# Clone and setup.
$ git clone [email protected]:team-durumi/moy-project.git
$ cd moy-project && composer install && composer workspace && composer env
# Load env vars and check install options. (default DB_URL: gh-codespace)
$ . scripts/env.sh && env | grep DRUSH_COMMAND_SITE_INSTALL_OPTIONS_DB_URL
# Install site.
$ composer site-install
# Run web server.
$ composer start
# Uninstall site.
$ composer site-uninstall
```### profile
```json
// composer.json
// remote
{
"type": "vcs",
"url": "https://github.com/team-durumi/moy"
}
// local
{
"type": "path",
"url": "../moy"
}
```