Create a Meteor app and put the client_/server_ files in a client/server directories. Also, create a public dir to save the uploaded files.
- 한국어 번역(초벌): nacyot
- 같이 읽으면 좋은 문서들
The basic structure of a React+Flux application (see other examples)
- /src/actions/AppActions.js - Action creators (Flux)
- /src/components/Application.js - The top-level React component
- /src/constants/ActionTypes.js - Action types (Flux)
- /src/core/Dispatcher.js - Dispatcher (Flux)
- /src/stores/AppStore.js - The main store (Flux)
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
#! python3.4 | |
from setuptools import setup | |
import os | |
import py2exe | |
import matplotlib | |
includes = ["sip", | |
"PyQt5", | |
"PyQt5.QtCore", | |
"PyQt5.QtGui", |