Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adrianliaw/cs253-final-flask
https://github.com/adrianliaw/cs253-final-flask
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/adrianliaw/cs253-final-flask
- Owner: adrianliaw
- Created: 2014-09-21T13:44:05.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-22T04:20:10.000Z (over 10 years ago)
- Last Synced: 2023-05-24T20:50:17.752Z (over 1 year ago)
- Language: CSS
- Homepage: http://cs253-final.herokuapp.com/
- Size: 8.93 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CS253 Final
==========
This is Udacity CS253 final project in Flask.
----------### Some difference between this one and origin cs253 final project:
- Using Flask
- Using Markdown as page content
- Using MongoDB
- Previews
- Deploy on Heroku## PAGE
### [CS253 Final](http://cs253-final.herokuapp.com/)## TODO
### Things you have to install:
- MongoDB
- python3
- virtualenv### Step by Step Guide:
Clone Repository:
```
git clone https://github.com/adrianliaw/CS253-Final-Flask.git
```Run MongoDB:
```
sudo mongod
```Then switch to another window.
Change to correct directory:
```
cd CS253-Final-Flask
```Create a Virtual Environment (With Python3):
```
virtualenv -p python3 venv
source venv/bin/activate
```Install Requirement packages:
```
pip install -r requirements.txt
```Run gunicorn (WSGI server):
```
gunicorn main:app
```Go to 127.0.0.1:8000 (localhost:8000)