| garciadeblas | edca7b3 | 2016-09-29 14:01:52 +0000 | [diff] [blame] | 1 | ## |
| tierno | 9202102 | 2018-09-12 16:29:23 +0200 | [diff] [blame] | 2 | # Copyright 2015 Telefonica Investigacion y Desarrollo, S.A.U. |
| garciadeblas | edca7b3 | 2016-09-29 14:01:52 +0000 | [diff] [blame] | 3 | # This file is part of openmano |
| 4 | # All Rights Reserved. |
| 5 | # |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 7 | # not use this file except in compliance with the License. You may obtain |
| 8 | # a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 14 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 15 | # License for the specific language governing permissions and limitations |
| 16 | # under the License. |
| 17 | # |
| 18 | # For those usages not covered by the Apache License, Version 2.0 please |
| 19 | # contact with: nfvlabs@tid.es |
| 20 | ## |
| 21 | |
| 22 | # This is a template with common files to be igonored, after clone make a copy to .gitignore |
| 23 | # cp .gitignore-common .gitignore |
| tierno | 4078073 | 2016-09-28 09:37:00 +0000 | [diff] [blame] | 24 | |
| Anderson Bravalheri | 0446cd5 | 2018-08-17 15:26:19 +0100 | [diff] [blame] | 25 | .tox/ |
| 26 | .coverage |
| 27 | |
| garciadeblas | ed74603 | 2017-01-05 11:58:41 +0100 | [diff] [blame] | 28 | *.pyc |
| 29 | *.pyo |
| tierno | 4078073 | 2016-09-28 09:37:00 +0000 | [diff] [blame] | 30 | |
| 31 | #auto-ignore |
| 32 | .gitignore |
| 33 | |
| 34 | #logs of openmano |
| 35 | logs |
| 36 | |
| garciadeblas | edca7b3 | 2016-09-29 14:01:52 +0000 | [diff] [blame] | 37 | #pycharm |
| tierno | 4078073 | 2016-09-28 09:37:00 +0000 | [diff] [blame] | 38 | .idea |
| 39 | |
| garciadeblas | edca7b3 | 2016-09-29 14:01:52 +0000 | [diff] [blame] | 40 | #eclipse |
| tierno | 4078073 | 2016-09-28 09:37:00 +0000 | [diff] [blame] | 41 | .project |
| 42 | .pydevproject |
| 43 | .settings |
| 44 | |
| 45 | #local stuff files that end in ".local" or folders called "local" |
| 46 | *.local |
| 47 | vnfs/*.local |
| 48 | test/*.local |
| 49 | scenarios/*.local |
| 50 | instance-scenarios/*.local |
| 51 | database_utils/*.local |
| 52 | scripts/*.local |
| 53 | local |
| 54 | vnfs/local |
| 55 | test/local |
| 56 | scenarios/local |
| 57 | instance-scenarios/local |
| 58 | database_utils/local |
| 59 | scripts/local |
| garciadeblas | edca7b3 | 2016-09-29 14:01:52 +0000 | [diff] [blame] | 60 | |