summaryrefslogtreecommitdiffstats
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* add 'npm' and 'npm-update' make targets and lockfile (#7246)silverwind2019-06-181-1/+0
| | | | | | | | | | | | | | | | | | * add 'npm' and 'npm-update' make targets and lockfile - `make npm` installs and updates node_modules, triggered automatically on `make css` and `make js` as it completes reasonably fast and ensures consistent modules. - `make npm-update` updates all dependencies to their latest version, regenerates `node_modules` from scratch and updates `package-lock.json`. It uses npm modules `updates` written by yours truly to find the latest version of each dependency. * add suggested make dependencies * remove package-lock.json during npm-update * regenerate package-lock.json
* remove and disable package-lock (#6969)silverwind2019-05-161-0/+2
| | | | | | | | | | | | | | | | * remove and disable package-lock Using exact versions in package.json has the same effect as lockfiles without all the troubles the lockfiles bring (different versions of package manager generating different lockfiles primarily). Ensured we only use exact versions in package.json and stopped generation of new lockfiles via .npmrc which is support by both the npm and yarn package managers. Fixes: https://github.com/go-gitea/gitea/issues/6967 * enable save-exact
* Improve migrations to support migrating ↵Lunny Xiao2019-05-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | milestones/labels/issues/comments/pullrequests (#6290) * add migrations * fix package dependency * fix lints * implements migrations except pull requests * add releases * migrating releases * fix bug * fix lint * fix migrate releases * fix tests * add rollback * pull request migtations * fix import * fix go module vendor * add tests for upload to gitea * more migrate options * fix swagger-check * fix misspell * add options on migration UI * fix log error * improve UI options on migrating * add support for username password when migrating from github * fix tests * remove comments and fix migrate limitation * improve error handles * migrate API will also support migrate milestones/labels/issues/pulls/releases * fix tests and remove unused codes * add DownloaderFactory and docs about how to create a new Downloader * fix misspell * fix migration docs * Add hints about migrate options on migration page * fix tests
* Add test environment for Mysql8 (#5234)Lunny Xiao2019-03-171-0/+3
|
* refactor issue indexer, add some testing and fix a bug (#6131)Lunny Xiao2019-02-211-0/+1
| | | | | | | | * refactor issue indexer, add some testing and fix a bug * fix error copyright year on comment header * issues indexer package import keep consistent
* Added test environment for mssql (#4282)kolaente2018-12-121-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added test environment for m$sql * Added template for test environment for m$sql * Fix password * Fix password (again) * Fix password (again again) * Fix db * Ci trigger (Looking at you drone....) * Ci trigger (Looking at you drone....) * Ci trigger (Looking at you drone....) * Ci trigger (Looking at you drone....) * Create master database for mssql integration tests Signed-off-by: Jonas Franz <info@jonasfranz.software> * Create database only if master do not exist Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix mssql integration tests by using custom database "gitea" Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved defer * bump xorm * updated xorm * Fixed build
* snap-packaging for gitea (#2568)Thorben2018-05-091-0/+10
| | | | | | | | | | | | | | | | | * Modify tbraeutigam/gogs-snap for gitea * Fix building on 16.04 (manually build go-bindata). -> add _source.tar.bz2 to .gitignore (used by snapcraft cleanbuild) * Streamline Snap packaging: - Take advantage of install-hooks (snapd 2.27) - Use snapctl configuration storage for unchanging values * Move to using Snap Hooks for configuration * Missed re-adding daemon statement * Fix two warnings from Codacy.
* Use standard lessc and minify CSS using Node.js (#2337)silverwind2017-09-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use standard lessc and minify CSS using Node.js This changes the previous nonstandard `lessc` to the official one and enables CSS minification via the clean-css module. To build CSS, Node.js is required along with a `npm install` to get the tools installed locally in node_modules so there is no dependency on binaries in PATH. Benefits include: - Allows one to have a standard lessc in PATH. - Can now use command line switches on lessc. - Minified CSS brings faster page load times and also has the benefit of discouraging contributors from editing CSS directly. To build CSS, Node.js is required along with a `npm install` to get the tools installed locally based on the information in `package.json`. The 'make stylesheet' task was modified to run without condition. This makes it easier to work on the make task itself without having to delete files. Also fixes: https://github.com/go-gitea/gitea/issues/2198 * install node, npm and modules on drone * .PHONY * use 'minify' to minify CSS
* Improve issue search (#2387)Ethan Koenig2017-09-161-0/+3
| | | | | | | | | | * Improve issue indexer * Fix new issue sqlite bug * Different test indexer paths for each db * Add integration indexer paths to make clean
* add codecov.io service. (#2493)Bo-Yi Wu2017-09-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | * add codecov.io service. Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * update Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * only PR or master branch (for coverage badge) Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * update Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * update init Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
* Allow changing integration test database connection using env variables (#2484)Lauris BH2017-09-131-0/+2
|
* Basic VSCode configuration for building and debugging (#2483)Lauris BH2017-09-121-0/+4
| | | | | | | | * Basic VSCode configuration for building and debugging * Fix building and debugging in Windows * Move to contrib folder and add instructions
* Fix some tests : make coverage -> test (#2492)Antoine GIRARD2017-09-121-1/+3
| | | | | | | | * Fix test : make coverage -> test * Refactor integration tests to be able to run them in parallel * Add custom local repository temp path
* Coverage reports for integration tests (#1960)Ethan Koenig2017-06-151-1/+1
|
* fix: error from mktemp command in MacOS. (#1837)Bo-Yi Wu2017-06-041-1/+1
| | | | | | | | * fix: error from mktemp command in MacOS. * [ci skip] udpate temp name. Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
* improve integration test to resue models/fixtures and store git repos with ↵Lunny Xiao2017-04-281-1/+2
| | | | | | | | | | tests (#1627) * improve integration test to resue models/fixtures and store git repos with source * use gitea-integration-meta dir instead .tar.gz and cleanup every before every test * fix import package name
* Integration test framework (#1290)Ethan Koenig2017-04-251-0/+1
| | | | | | | | | | * Integration test framework * udpate drone sign * Formatting fixes and move router.go to routers/ * update sign for drone
* Search bar for issues/pulls (#530)Ethan Koenig2017-01-251-0/+1
|
* Bindata is optional and over-writable on restart (#354)Thomas Boerger2016-12-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Moved conf assets into options folder * Dropped old bindata * Started to integrate options bindata and accessors * Do not enforce a builtin app.ini * Replaced bindata calls with options * Dropped bindata task from makefile, it's the generate task now * Always embedd app.ini to provide sane config defaults * Use sane defaults for the configuration * Defined default value for SSH_KEYGEN_PATH * Dropped "NEVER EVER MODIFY THIS FILE" header from app.ini * Fixed new paths in latest test additions * Drop bindata with make clean task * Set more proper default values
* Integrate templates into bindata optionally (#314)Thomas Boerger2016-12-061-0/+1
| | | Integrated optional bindata for the templates
* Integrate public as bindata optionally (#293)Thomas Boerger2016-11-301-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | * Dropped unused codekit config * Integrated dynamic and static bindata for public * Ignore public bindata * Add a general generate make task * Integrated flexible public assets into web command * Updated vendoring, added all missiong govendor deps * Made the linter happy with the bindata and dynamic code * Moved public bindata definition to modules directory * Ignoring the new bindata path now * Updated to the new public modules import path * Updated public bindata command and drop the new prefix
* Add IDEA IntelliJ to .gitignoreThibault Meyer2016-11-101-0/+3
|
* Stop ignoring gitea in generalThomas Boerger2016-11-071-1/+2
|
* Extended gitignoreThomas Boerger2016-11-041-2/+3
|
* Added a common golang gitignoreThomas Boerger2016-11-041-17/+34
|
* Dropped vendoring from gitignoreThomas Boerger2016-11-041-1/+0
|
* Use glideUnknwon2016-03-111-0/+1
|
* Some minor changesUnknwon2016-03-061-20/+1
|
* Fix #2564 file ignored by gitUnknwon2016-02-051-1/+0
|
* add MakefileUnknwon2015-11-031-0/+1
|
* Docker Container Restart FixJean-Philippe Roemer2015-10-101-0/+1
| | | | | - Fix s6 fifodir error on container restart - Add .tags* to .gitignore (Atom auto ctags generation)
* UI: basic label listUnknwon2015-07-241-1/+0
| | | | - create new label
* Changes to repo-header-download-drop, different repo-clone-url input behaviourStefan-Code2015-02-111-1/+2
|
* Fix fork repo and macaron API brokenUnknwon2014-10-241-9/+2
|
* Fix bug on transfer repoUnknwon2014-09-251-0/+3
|
* Finish new reset password, etc.Unknwon2014-08-091-0/+1
|
* Use toolboxUnknwon2014-08-061-0/+1
|
* Add missing less filesUnknwon2014-08-051-1/+1
|
* New UI merge in progressUnknwon2014-07-261-0/+1
|
* Add files/ directory to .gitignoreJustin Nuß2014-07-241-1/+2
|
* add build scriptLunny Xiao2014-07-161-0/+1
|
* Move debug router locationUnknown2014-07-061-1/+0
|
* initial support for LDAP authentication/MSADjuju20132014-04-231-0/+1
|
* fixzhsso2014-04-101-0/+36
|
* mistakeszhsso2014-04-101-36/+0
|
* bug fixedLunny Xiao2014-04-101-0/+1
|
* add testsskyblue2014-03-311-9/+4
|
* Merge branch 'master' of localhost:xiaoxiao/gogs3Lunny Xiao2014-03-261-0/+3
|\ | | | | | | | | | | Conflicts: .gitignore README.md
| * Init commitxiaoxiao2014-03-261-0/+22
|
* Merge branch 'master' of localhost:xiaoxiao/gogs7Lunny Xiao2014-03-251-0/+1
|\ | | | | | | | | Conflicts: .gitignore