https://github.com/thomasmost/august
character-driven scripting
https://github.com/thomasmost/august
Last synced: 9 months ago
JSON representation
character-driven scripting
- Host: GitHub
- URL: https://github.com/thomasmost/august
- Owner: thomasmost
- Created: 2018-04-29T22:06:51.000Z (about 8 years ago)
- Default Branch: react
- Last Pushed: 2018-04-30T19:33:23.000Z (about 8 years ago)
- Last Synced: 2025-06-14T02:41:00.981Z (about 1 year ago)
- Language: TypeScript
- Size: 2.22 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# express-ts-sass-starter
Ready to deploy starter-app configured for webpack, typescript, and sass
## Features
### WebPack preconfigured
Once you've forked the repository and installed dependencies, run `webpack --watch`
Client typescript and SASS will be compiled, as well as custom fonts, sass-loaded image assets, and index.html, all from `src`
Currently the server is located in `\dist` and all compiled client files are built to `\public`
### heroku-ready
cd to repository after cloning. Make sure you have the heroku CLI and toolbelt installed.
Run:
`heroku create`
`git push -u heroku master`
The app will build and deploy to a heroku dyno.
### Framework Agnostic
I purposefully haven't included Angular 2, React, or another javascript framework in this project.
It grew out of an InfernoJS project, which is fairly light-weight, and I wanted to keep it that way.
This project is intended to help set up a new project up for success with a full-featured code-to-deploy build process than it is about showcasing a particular JS framework.
### Full Stack
This application is built with:
NodeJS
Express
TypeScript
SASS
Bourbon/Neat
### Known Issues
The server is currently being compiled with a tsc command, while the client is compiled by webpack. Need to investigate if this can be simplified.
I'll be making improvements as I go, feel free to post suggestions in Issues.