-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for a cookie cutter as possible (#3)
* deployment stubs * title update on index * Update README.md
- Loading branch information
Showing
4 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
# fantasy_football_records | ||
|
||
[We're live!!](https://walpolefantasyfootball.com/) | ||
|
||
### Setup | ||
|
||
- [Namecheap domain to Digital Ocean](https://www.namecheap.com/support/knowledgebase/article.aspx/10375/2208/how-do-i-link-a-domain-to-my-digitalocean-account/) | ||
- [Digital Ocean starter guide](https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-18-04) | ||
- [Digital Ocean flask + nginx](https://www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-uswgi-and-nginx-on-ubuntu-18-04#step-7-%E2%80%94-securing-the-application) | ||
- [Let's Encrypt nginx + ubuntu](https://certbot.eff.org/lets-encrypt/ubuntufocal-nginx) | ||
|
||
### Notes | ||
|
||
Get access to private leagues that you are a member of with the instructions on [cwendt94's awesome ESPN API repo](https://github.com/cwendt94/espn-api) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[uwsgi] | ||
module = wsgi:app | ||
master = true | ||
processes = 5 | ||
socket = fantasy_football_records.sock | ||
chmod-socket = 660 | ||
vacuum = true | ||
die-on-term = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from app import app | ||
|
||
if __name__ == "__main__": | ||
app.run() |