| 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/ |
| sousaedu | 96abfc2 | 2021-02-18 14:57:01 +0100 | [diff] [blame^] | 26 | venv/ |
| 27 | |
| Anderson Bravalheri | 0446cd5 | 2018-08-17 15:26:19 +0100 | [diff] [blame] | 28 | .coverage |
| sousaedu | 96abfc2 | 2021-02-18 14:57:01 +0100 | [diff] [blame^] | 29 | cover |
| 30 | coverage.xml |
| 31 | nosetests.xml |
| Anderson Bravalheri | 0446cd5 | 2018-08-17 15:26:19 +0100 | [diff] [blame] | 32 | |
| garciadeblas | ed74603 | 2017-01-05 11:58:41 +0100 | [diff] [blame] | 33 | *.pyc |
| 34 | *.pyo |
| tierno | 4078073 | 2016-09-28 09:37:00 +0000 | [diff] [blame] | 35 | |
| sousaedu | 96abfc2 | 2021-02-18 14:57:01 +0100 | [diff] [blame^] | 36 | *.eggs/ |
| 37 | *.egg-info/ |
| 38 | |
| tierno | 4078073 | 2016-09-28 09:37:00 +0000 | [diff] [blame] | 39 | #auto-ignore |
| 40 | .gitignore |
| 41 | |
| 42 | #logs of openmano |
| 43 | logs |
| 44 | |
| garciadeblas | edca7b3 | 2016-09-29 14:01:52 +0000 | [diff] [blame] | 45 | #pycharm |
| tierno | 4078073 | 2016-09-28 09:37:00 +0000 | [diff] [blame] | 46 | .idea |
| 47 | |
| garciadeblas | edca7b3 | 2016-09-29 14:01:52 +0000 | [diff] [blame] | 48 | #eclipse |
| tierno | 4078073 | 2016-09-28 09:37:00 +0000 | [diff] [blame] | 49 | .project |
| 50 | .pydevproject |
| 51 | .settings |
| 52 | |
| 53 | #local stuff files that end in ".local" or folders called "local" |
| 54 | *.local |
| 55 | vnfs/*.local |
| 56 | test/*.local |
| 57 | scenarios/*.local |
| 58 | instance-scenarios/*.local |
| 59 | database_utils/*.local |
| 60 | scripts/*.local |
| 61 | local |
| 62 | vnfs/local |
| 63 | test/local |
| 64 | scenarios/local |
| 65 | instance-scenarios/local |
| 66 | database_utils/local |
| 67 | scripts/local |
| garciadeblas | edca7b3 | 2016-09-29 14:01:52 +0000 | [diff] [blame] | 68 | |