Skip to content

Commit

Permalink
First working version
Browse files Browse the repository at this point in the history
  • Loading branch information
dani-garcia committed Feb 10, 2018
0 parents commit 5cd40c6
Show file tree
Hide file tree
Showing 172 changed files with 17,903 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Local build artifacts
target

# Data folder
data

# IDE files
.vscode
.idea
*.iml

# Git and Docker files
.git
.gitignore
.gitmodules
Dockerfile
docker-compose.yml
.dockerignore

# Documentation
*.md

13 changes: 13 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# DATABASE_URL=data/db.sqlite3
# PRIVATE_RSA_KEY=data/private_rsa_key.der
# PUBLIC_RSA_KEY=data/public_rsa_key.der
# ICON_CACHE_FOLDER=data/icon_cache
# ATTACHMENTS_FOLDER=data/attachments

# true for yes, anything else for no
SIGNUPS_ALLOWED=true

# ROCKET_ENV=production
# ROCKET_ADDRESS=0.0.0.0 # Enable this to test mobile app
# ROCKET_PORT=8000
# ROCKET_TLS={certs="/path/to/certs.pem",key="/path/to/key.pem"}
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Local build artifacts
target

# Data folder
data

# IDE files
.vscode
.idea
*.iml

# Environment file
# .env
Loading

0 comments on commit 5cd40c6

Please sign in to comment.