https://github.com/upvalue/tekne-prototype
prototype for an editor project
https://github.com/upvalue/tekne-prototype
Last synced: 9 months ago
JSON representation
prototype for an editor project
- Host: GitHub
- URL: https://github.com/upvalue/tekne-prototype
- Owner: upvalue
- Created: 2021-12-29T03:33:06.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-29T03:33:22.000Z (almost 4 years ago)
- Last Synced: 2025-03-15T04:53:58.853Z (9 months ago)
- Language: TypeScript
- Size: 313 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tekne
freestyle productivity application
## development setup
### Running everything all at once with auto-reload on GraphQL/SQL schema changes
Requires supervisord and entr to be installed.
In two separate terminals:
```
dev/start.sh
dev/watch.sh
```
### Running things separately
#### database
To start the database:
```
docker-compose -f backend/docker-compose.yml up
```
To run SQL migrations:
```
cd backend && yarn knex migrate:latest
```
#### backend
```
cd backend && yarn start
```
#### frontend
```
cd frontend && yarn start
```