Skip to content

Commit

Permalink
Merge pull request #3 from Vilsafur/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Vilsafur committed Jan 13, 2020
2 parents 7e8dce7 + 681d416 commit 3244599
Show file tree
Hide file tree
Showing 23 changed files with 1,065 additions and 1,019 deletions.
12 changes: 12 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
###> Database
# One of this : sqlite | mysql | postgres | mariadb | mssql
DB_ENGINE=mysql
DB_USER=yourusername
DB_PASS=yourpassword
DB_NAME=yourdatabase
# For mysql, postgres, mariadb or mssql
DB_HOST=localhost
DB_PORT=3306
# Only for sqlite
DB_PATH=
###< Database
12 changes: 12 additions & 0 deletions .env.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
###> Database
# One of this : sqlite | mysql | postgres | mariadb | mssql
DB_ENGINE=sqlite
DB_USER=yourusername
DB_PASS=yourpassword
DB_NAME=yourdatabase
# For mysql, postgres, mariadb or mssql
# DB_HOST=localhost
# DB_PORT=3306
# Only for sqlite
DB_PATH=:memory:
###< Database
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ typings/

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ install:
- npm install
script:
- npm run test
services: sqlite
after_script: npm run cover
# deploy:
# provider: script
Expand Down

0 comments on commit 3244599

Please sign in to comment.