Feat: Dockerizing using nginx reverse proxy (#280)

* minor docker fixes

* eslint config changes

* dockerfile changes to backend and frontend

* oauth enabled env flag

* sentry enabled env flag

* build: get alternatives for environment variables and static file storage

* build: automatically generate random secret key if not provided

* build: update docker compose for next url env add channels to requirements for asgi server and save files in local machine for docker environment

* build: update nginx conf for backend base url update backend dockerfile to make way for static file uploads

* feat: create a default user with given values else default values

* chore: update docker python version and other dependency version in docker

* build: update local settings file to run it in docker

* fix: update script to run in default production setting

* fix: env variable changes and env setup shell script added

* Added Single Dockerfile to run the Entire plane application

* docs build fixes

---------

Co-authored-by: Narayana <narayana.vadapalli1996@gmail.com>
Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
This commit is contained in:
sriram veeraghanta 2023-02-21 11:31:43 +05:30 committed by GitHub
parent 33e2986062
commit bdca84bd09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
47 changed files with 9613 additions and 11018 deletions

View file

@ -1 +1,4 @@
module.exports = require('config/.eslintrc')
module.exports = {
root: true,
extends: ['custom'],
}

View file

@ -38,6 +38,7 @@
"zustand": "^4.1.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.51.0",
"eslint": "8.26.0",
"eslint-config-next": "13.0.2",
"prettier": "^2.7.1",

View file

@ -2,6 +2,7 @@ import { Guides } from '@/components/Guides'
import { Resources } from '@/components/Resources'
import { HeroPattern } from '@/components/HeroPattern'
import { Heading } from '@/components/Heading'
import { Button } from '@/components/Button'
export const description = '.'

View file

@ -1,4 +1,5 @@
import { Heading } from '@/components/Heading'
import { Note } from '@/components/mdx'
# Project setup

View file

@ -1,3 +1,5 @@
import { Note } from '@/components/mdx'
# Get Started
This section of the Plane docs helps you get comfortable with the product and find your way around more effectively.

View file

@ -1,6 +1,7 @@
# Self Hosting Plane
import { Heading } from '@/components/Heading'
import { Note } from '@/components/mdx'
<Note>
Plane is still in its early days, not everything will be perfect yet, and
@ -79,4 +80,4 @@ import { Heading } from '@/components/Heading'
6. Visit
1. [http://localhost:3000](http://localhost:3000) - (Frontend)
2. [http://localhost:8000](http://localhost:8000) - (Backend)
2. [http://localhost:8000](http://localhost:8000) - (Backend)

View file

@ -1,4 +1,5 @@
import { Heading } from '@/components/Heading'
import { Note } from '@/components/mdx'
# Workspace setup