2bcab5d098
- moved all server related things into the folder `server`, so this configuration is parallel to the client. - All main "services" are now folders in the root directory - Added Dockerfiles to each service (currently server and client) - Added a docker compose configuration to start everything together. Currently there are heavy dependencies into https://github.com/OpenSlides/openslides-docker-compose - Resturctured the .gitignore. If someone needs something excluded, please add it to the right section. - Added initial build setup with Docker and docker-compose. - removed setup.py. We won't deliver OpenSlides via pip anymore.
77 lines
1.2 KiB
Plaintext
77 lines
1.2 KiB
Plaintext
## General
|
|
*.pyc
|
|
*.swp
|
|
*.swo
|
|
*.log
|
|
*~
|
|
# IDEs and editors
|
|
/.idea
|
|
.project
|
|
.classpath
|
|
.c9/
|
|
*.launch
|
|
.settings/
|
|
*.sublime-workspace
|
|
.vscode/*
|
|
*.code-workspace
|
|
# System Files
|
|
.DS_Store
|
|
Thumbs.db
|
|
# Virtual Environment
|
|
.virtualenv*/*
|
|
.venv/*
|
|
|
|
## Compatibility
|
|
# OS4-Submodules
|
|
/openslides-*/
|
|
# Plugin development
|
|
openslides_*
|
|
|
|
## Server
|
|
# Local user data (settings, database, media, search index, static files)
|
|
personal_data/*
|
|
server/personal_data/*
|
|
server/openslides/static/*
|
|
# Unit test and coverage reports
|
|
.coverage
|
|
server/tests/file/*
|
|
server/tests/db.sqlite3.test
|
|
.pytest_cache
|
|
# Package building
|
|
*.egg-info
|
|
# Mypy cache for typechecking
|
|
.mypy_cache
|
|
|
|
## OpenSlides 3 Client
|
|
# Javascript tools and libraries
|
|
**/node_modules/*
|
|
**/bower_components/*
|
|
# compiled output
|
|
client/dist
|
|
client/static
|
|
client/tmp
|
|
client/out-tsc
|
|
# docs
|
|
client/documentation
|
|
Compodoc
|
|
Compodocmodules
|
|
# build artifacts
|
|
client/.sass-cache
|
|
client/connect.lock
|
|
client/coverage
|
|
client/libpeerconnection.log
|
|
client/npm-debug.log
|
|
client/yarn-error.log
|
|
client/testem.log
|
|
client/typings
|
|
client/yarn.lock
|
|
package-lock.json
|
|
client/package-lock.json
|
|
cypress.json
|
|
|
|
## Deployment
|
|
# Docker build artifacts
|
|
*-version.txt
|
|
# secrets
|
|
docker/secrets/*.env
|