twigs-web/README.md

50 lines
2.3 KiB
Markdown
Raw Normal View History

2021-02-27 13:51:13 +00:00
# Twigs Web Client
2018-08-27 17:04:01 +00:00
2024-04-07 16:38:06 +00:00
# IMPORTANT: This repository is no longer maintained. The web version of Twigs has been replaced with a server-rendered implementation in the [backend repository](https://github.com/wbrawner/twigs)
2021-02-27 13:51:13 +00:00
Twigs is an open source budgeting app aimed at people who need to share a budget. This project serves as the web front end, and is powered by Angular. The main back end project can be found at [wbrawner/twigs-server](https://github.com/wbrawner/twigs-server)
2018-08-27 17:04:01 +00:00
2021-02-27 13:51:13 +00:00
## Building
2018-08-27 17:04:01 +00:00
2021-02-27 13:51:13 +00:00
You'll need NodeJS and NPM, then run
2018-08-27 17:04:01 +00:00
2021-02-27 13:51:13 +00:00
npm run build
2018-08-27 17:04:01 +00:00
2021-02-27 13:51:13 +00:00
If you would like to tinker with the site and have it hot reload, then run
2018-08-27 17:04:01 +00:00
2021-02-27 13:51:13 +00:00
npm run start
2018-08-27 17:04:01 +00:00
2021-02-27 13:51:13 +00:00
The app will be available at http://localhost:4200
2018-08-27 17:04:01 +00:00
2021-02-27 13:51:13 +00:00
## Self-hosting
2018-08-27 17:04:01 +00:00
2021-02-27 13:51:13 +00:00
Eventually the plan is to ship this web app within the JAR for the server, but for now you'll need to run them separately. Before you build the app, be sure to change the `apiUrl` value in [src/environments/environment.prod.ts](src/environments/environment.prod.ts). Then you can run the following command to get an optimized version of the build for production deployments
2018-08-27 17:04:01 +00:00
2021-02-27 13:51:13 +00:00
npm run package
2018-08-27 17:04:01 +00:00
2021-02-27 13:51:13 +00:00
This will output the app in a folder called `dist/twigs`, which you can then serve directly with Apache or Nginx or any static file server.
2018-08-27 17:04:01 +00:00
2021-02-27 13:51:13 +00:00
## License
2018-08-27 17:04:01 +00:00
2021-02-27 13:51:13 +00:00
```
Copyright (c) 2021 William Brawner
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
2024-04-07 16:38:06 +00:00
```