Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hironate committed Dec 30, 2018
1 parent bd0cbb4 commit 3f20bd7
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/node_modules
/public/hot
/public/storage
/public/.well-known
/storage/framework
/storage/logs
/storage/*.key
Expand All @@ -12,7 +11,5 @@ Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
.travis.yml
composer.lock
mkdocs.yml

23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
language: php
php:
- '7.2'
services:
- mysql

services:
- mysql
addons:
apt:
sources:
- mysql-5.7-trusty
packages:
- mysql-server
dist: trusty
before_script:
- composer install
- mv tests/test_env .env
- mysql -e 'CREATE DATABASE shortycli;'
- php artisan migrate --force
- composer install
notifications:
email: false
17 changes: 17 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
site_name: Shorty
pages:
- Home: index.md
- User Guide:
- 'Installation': 'user-guide/installation.md'
- 'Troubleshooting': 'user-guide/troubleshooting.md'
- Developer Guide:
- 'API Documentation': 'developer-guide/api.md'
- 'API Errors': 'developer-guide/api_errors.md'
- About:
- 'License': 'about/license.md'
- 'Contributors': 'about/contributors.md'
- 'Contributing': 'about/contributing.md'

theme: readthedocs
repo_url: https://github.com/CodingMonkTech/shorty
site_author: Coding Monk

0 comments on commit 3f20bd7

Please sign in to comment.