Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
fixed some spelling errors
  • Loading branch information
jredd committed Dec 9, 2014
1 parent f0a0422 commit df59a2d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@


#Redd Manager
Please be sure to install the requirements in the requirments.txt fiel. Being able to work on python virtual environemtns is key as well for gunicorn to function.
Please be sure to install the requirements in the requirements.txt fiel. Being able to work on python virtual environments is key as well for Gunicorn to function.

###Django settings.py data setup
I do not keep the db server setup the django's settings.py needs on git since it contains password information but it looks a little something like this and connects to a local postgresql server. I've also included a copy of my nginx server config file
I do not keep the db server setup the Django's settings.py needs on git since it contains password information but it looks a little something like this and connects to a local postgreSQL server. I've also included a copy of my nginx server config file

DATABASES = {
'default': {
Expand All @@ -18,8 +18,8 @@ I do not keep the db server setup the django's settings.py needs on git since it
}


###Gunicorn instantion
This is how I spin up the Application instances. I have to be inside of the redd forlder containing the django application.
###Gunicorn instantiation
This is how I spin up the Application instances. I have to be inside of the redd folder containing the django application.

gunicorn redd.wsgi:application --bind=127.0.0.1:9001
gunicorn redd.wsgi:application --bind=127.0.0.1:7001
Expand All @@ -29,4 +29,4 @@ The front end is pretty simple. Just point nginx to the folder that contains the

##Heads up

Be sure to change the logging file paths in the nginx settings files you use them. Also be sure to point the Djang servers in the .conf file at the proper directory.
Be sure to change the logging file paths in the nginx settings files you use them. Also be sure to point the Django's servers in the .conf file at the proper directory.

0 comments on commit df59a2d

Please sign in to comment.