mirror of
https://github.com/rjNemo/go-wiki
synced 2026-06-06 02:36:40 +00:00
release
This commit is contained in:
parent
92005bf2ae
commit
acac986393
2 changed files with 31 additions and 4 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
# Version 0.1 (2020-03-16)
|
# Version 0.1 (2020-03-16)
|
||||||
|
|
||||||
Initial release
|
Initial release
|
||||||
|
|
||||||
|
# Version 1.0 (2020-03-20)
|
||||||
|
|
||||||
|
Wiki web application models built using Go
|
||||||
|
|
|
||||||
31
README.md
31
README.md
|
|
@ -32,12 +32,34 @@ go run main.go
|
||||||
|
|
||||||
## Deployment
|
## Deployment
|
||||||
|
|
||||||
Add additional notes about how to deploy this on a live system
|
An example app is deployed on [Heroku](https://www.heroku.com/).
|
||||||
|
|
||||||
|
Follow these steps to deploy. Compile the application:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
go build -o bin/go-wiki
|
||||||
|
```
|
||||||
|
|
||||||
|
Make sure that any unused modules have been removed from your application and is resistant to erosion:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
go mod tidy
|
||||||
|
go mod vendor
|
||||||
|
```
|
||||||
|
|
||||||
|
You will need an `.env` file such as:
|
||||||
|
|
||||||
|
```env
|
||||||
|
PORT=8080
|
||||||
|
TMPLDIR=views/templates/
|
||||||
|
DATABASE_URL=postgres://oshiervtwfrqrr:f177bc7ff355c142931aeb3f3
|
||||||
|
```
|
||||||
|
|
||||||
## Built With
|
## Built With
|
||||||
|
|
||||||
- [Go](https://golang.org/) - Build simple, reliable, and efficient software
|
- [Go](https://golang.org/) - Build simple, reliable, and efficient software
|
||||||
- [Bootstrap](https://getbootstrap.com/) - The most popular HTML, CSS, and JS library in the world
|
- [Bootstrap](https://getbootstrap.com/) - The most popular HTML, CSS, and JS library in the world
|
||||||
|
- [PostgreSQL](https://www.postgresql.org/) - The world's most advanced open source database
|
||||||
<!-- - [Quilljs](https://quilljs.com/) - Your powerful rich text editor -->
|
<!-- - [Quilljs](https://quilljs.com/) - Your powerful rich text editor -->
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
@ -60,6 +82,7 @@ This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md
|
||||||
|
|
||||||
## Acknowledgments
|
## Acknowledgments
|
||||||
|
|
||||||
- Hat tip to anyone whose code was used
|
For inspiration:
|
||||||
- Inspiration
|
|
||||||
- etc
|
- [Go MVC](https://www.calhoun.io/)
|
||||||
|
- [Alex Edwards](https://www.alexedwards.net/blog/organising-database-access)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue